1

Topic: Throttling on Ubuntu 12.04 with new iredmail0.8.6

==== Required information ====
- iRedMail version: 0.8.6
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): MySQL
- Linux/BSD distribution name and version: Ubuntu 12.04 server
- Related log if you're reporting an issue: NONE
====
After upgrade to 0.8.6 and iRedAdmin-Pro (MySQL) to 1.8.0; throttling options came to iredadmin pro web interface but it's not working at all...

Acording to the wiki (http://www.iredmail.org/wiki/index.php? … ian.Ubuntu) it's necesarry a second config file in cluebringer to enable trhottling on port 10032, actually I dont find this config file in Ubntu or support pages (google search). the only file I see is /etc/cluebringer/cluebringer.conf

How I can enable throtting on Ubuntu 12.04??

************* cluebringer.conf ********************************
[server]
protocols=<<EOT
Postfix
Bizanga
EOT

modules=<<EOT
Core
AccessControl
CheckHelo
CheckSPF
Greylisting
Quotas
EOT

user=cluebringer
group=cluebringer

pid_file=/var/run/cluebringer/cbpolicyd.pid
log_level=2
log_file=/var/log/cbpolicyd.log
log_mail=mail@syslog:native
host=127.0.0.1
host=127.0.0.1
port=10031

[database]
DSN=DBI:mysql:host=127.0.0.1;database=cluebringer;user=cluebringer;password=********************************

DB_Type=mysql
DB_Host=127.0.0.1
DB_Port=3306
DB_Name=cluebringer
Username=cluebringer
Password=********************************
bypass_mode=pass
bypass_timeout=10

[AccessControl]
enable=1
[Greylisting]
enable=1
[CheckHelo]
enable=1
[CheckSPF]
enable=1
[Quotas]
enable=1
*********************************************
dpkg -l | grep -i cluebringer

ii  postfix-cluebringer                  2.0.10-1                          anti-spam plugin for Postfix
ii  postfix-cluebringer-mysql         2.0.10-1                          metapackage for mysql support in postfix-cluebringer
ii  postfix-cluebringer-webui         2.0.10-1                          anti-spam plugin for Postfix

Thanks!!

----

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

2

Re: Throttling on Ubuntu 12.04 with new iredmail0.8.6

*) Cluebringer provides the same features as Policyd. You have Cluebringer, so no need to use Policyd at all.
*) Cluebringer should be running by default, please check with below command and you should see port 10031 is listening:

# netstat -ntlp | grep 10031

*) Cluebringer should be integrated in Postfix by default, check whether you have below settings in Postfix config file (/etc/postfix/main.cf) like below:

smtpd_recipient_restrictions = ..., check_policy_service inet:127.0.0.1:10031, ...
smtpd_end_of_data_restrictions = ..., check_policy_service inet:127.0.0.1:10031, ...

*) Please upgrade iRedMail to the latest 0.8.6 by following our upgrade tutorials here:
http://www.iredmail.org/doc.html#upgrade

*) In upgrade tutorial for iRedMail-0.8.5 to 0.8.6, there's a important SQL structure change, please don't forget to apply it:
http://iredmail.org/wiki/index.php?titl … r_database

Then you have Cluebringer working, and of course, throttling should be working as expected.