diff options
author | alecpl <alec@alec.pl> | 2008-09-15 06:53:18 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-09-15 06:53:18 +0000 |
commit | acb08f517d22a6acd9525ced7ea3fcc2e80d29f0 (patch) | |
tree | e11f972961299ee1e67cdd7315e728a6396b0391 /config | |
parent | a81be1b534d2d3380330e1e8dec0b39683a49f12 (diff) |
- Added 'sendmail_delay' option to restrict messages sending interval (#1484491)
Diffstat (limited to 'config')
-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 fcf7e8fff..ffa2d060f 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -107,6 +107,9 @@ $rcmail_config['smtp_helo_host'] = ''; // Log sent messages $rcmail_config['smtp_log'] = TRUE; +// how many seconds must pass between emails sent by a user +$rcmail_config['sendmail_delay'] = 0; + // these cols are shown in the message list // available cols are: subject, from, to, cc, replyto, date, size, encoding, flag $rcmail_config['list_cols'] = array('subject', 'from', 'date', 'size', 'flag'); |