1

Topic: iRedAdmin-Pro Connection refused quarantined e-mails

==== Required information ====
- iRedMail version:
- Store mail accounts in which backend (LDAP/MySQL/PGSQL):
- Web server (Apache or Nginx):
- Linux/BSD distribution name and version:
- Related log if you're reporting an issue:
======== Required information ====
- iRedMail version:
- Store mail accounts in which backend (LDAP/MySQL/PGSQL):
- Web server (Apache or Nginx):
- Linux/BSD distribution name and version:
- Related log if you're reporting an issue:
======== Required information ====
- iRedMail version: 0.9.2
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): LDAP and amavis with mysql
- Web server (Apache or Nginx): Apache
- Linux/BSD distribution name and version: Red Hat Enterprise Linux Server release 6.3
- Related log if you're reporting an issue:
====

In case was enable quarantining e-mails, this process is operating normal and message is listed in System -> Quarantined Mails.
But in the moment of choose action in drop-down menu list to release or delete them show this error:
Error: [Errno 111] Connection refused
I searched in the forum database and i found this post with same problem:
http://www.iredmail.org/forum/topic5307 … ntine.html

Analyzing the problem seems to be this, the server database is in host remote, exemple body /var/www/iredadmin/settings.py:
amavisd_db_host = '192.168.1.152'
amavisd_db_port = 3306
amavisd_db_name = 'amavisd'
amavisd_db_user = 'amavisd'
amavisd_db_password = 'password'

amavisd_quarantine_port = "9998"

And it seems to me that this iRedAdmin trying to connect with the remote host in the address 192.168.1.152  port 9998
and receives the reply "Error: [Errno 111] Connection refused"

In this specific case, I need to have a configuration variable to inform the amavisd server ex:
amavisd_quarantine_server = "localhost"
amavisd_quarantine_port = "9998"

There parameter so I can set this address?

Current scenario:
Mail server and amavisd server address: localhost
DB Host: 192.168.1.152

Thanks

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2

Re: iRedAdmin-Pro Connection refused quarantined e-mails

Searching found that the existence of the parameter in file settings.py.ldap.sample:
AMAVISD_QUARANTINE_HOST = '192.168.1.1'

Because the configuration file was old, there was no look at this issue.
The situation is resolved.