diff options
author | alecpl <alec@alec.pl> | 2010-04-02 13:53:39 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-04-02 13:53:39 +0000 |
commit | 751b22b41f960971b966341a386dbf1fd8e2629a (patch) | |
tree | 3cdeee23bc1506bb579134a8cc03bfa266c83ef7 /config/main.inc.php.dist | |
parent | b14f8297773df1c0ddf1cfb7ee80b93a0df8f5bd (diff) |
- Added optional (max_recipients) support to restrict total number of recipients per message (#1484542)
Diffstat (limited to 'config/main.inc.php.dist')
-rw-r--r-- | config/main.inc.php.dist | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 75110e45a..6be1f1e5f 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -180,6 +180,9 @@ $rcmail_config['password_charset'] = 'ISO-8859-1'; // How many seconds must pass between emails sent by a user $rcmail_config['sendmail_delay'] = 0; +// Maximum number of recipients per message. Default: 0 (no limit) +$rcmail_config['max_recipients'] = 0; + // add this user-agent to message headers when sending $rcmail_config['useragent'] = 'RoundCube Webmail/'.RCMAIL_VERSION; |