Changeset d1851ba in github
- Timestamp:
- Apr 6, 2010 2:40:45 AM (3 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- ace0624
- Parents:
- 3616845
- Files:
-
- 4 edited
-
config/main.inc.php.dist (modified) (1 diff)
-
program/localization/de_CH/messages.inc (modified) (1 diff)
-
program/localization/en_US/messages.inc (modified) (1 diff)
-
program/steps/addressbook/groups.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
config/main.inc.php.dist
r751b22b rd1851ba 183 183 // Maximum number of recipients per message. Default: 0 (no limit) 184 184 $rcmail_config['max_recipients'] = 0; 185 186 // Maximum allowednumber of members of an address group. Default: 0 (no limit) 187 // If 'max_recipients' is set this value should be less or equal 188 $rcmail_config['max_group_members'] = 0; 185 189 186 190 // add this user-agent to message headers when sending -
program/localization/de_CH/messages.inc
ra61bbb2 rd1851ba 110 110 $messages['smtperror'] = 'SMTP Fehler: $msg'; 111 111 $messages['emailformaterror'] = 'UngÌltige E-Mail-Adresse: $email'; 112 $messages['toomanyrecipients'] = 'Zuviele EmpfÀnger angegeben. Reduzieren Sie die EmpfÀngeradressen auf $max.'; 113 $messages['maxgroupmembersreached'] = 'Die Anzahl Adressen in dieser Gruppe Ìberschreitet das Maximum von $max'; 112 114 113 115 ?> -
program/localization/en_US/messages.inc
r751b22b rd1851ba 111 111 $messages['smtprecipientserror'] = 'SMTP Error: Unable to parse recipients list'; 112 112 $messages['smtperror'] = 'SMTP Error: $msg'; 113 $messages['emailformaterror'] = 'In correcte-mail address: $email';113 $messages['emailformaterror'] = 'Invalid e-mail address: $email'; 114 114 $messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; 115 $messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max'; 115 116 116 117 ?> -
program/steps/addressbook/groups.inc
r65c8764b rd1851ba 32 32 $plugin = $RCMAIL->plugins->exec_hook('group_addmembers', array('group_id' => $gid, 'ids' => $ids, 'source' => $source)); 33 33 34 if (!$plugin['abort'] && $CONTACTS->add_to_group($gid, $plugin['ids'])) 34 $CONTACTS->set_group($gid); 35 $num2add = count(explode(',', $plugin['ids'])); 36 37 if (!$plugin['abort'] && ($maxnum = $RCMAIL->config->get('max_group_members', 0)) && ($CONTACTS->count()->count + $num2add > $maxnum)) 38 $OUTPUT->show_message('maxgroupmembersreached', 'warning', array('max' => $maxnum)); 39 else if (!$plugin['abort'] && $CONTACTS->add_to_group($gid, $plugin['ids'])) 35 40 $OUTPUT->show_message('contactaddedtogroup'); 36 41 else if ($plugin['message'])
Note: See TracChangeset
for help on using the changeset viewer.
