Changeset 5319 in subversion
- Timestamp:
- Oct 7, 2011 4:43:07 AM (20 months ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 4 edited
-
CHANGELOG (modified) (1 diff)
-
program/include/rcube_smtp.php (modified) (1 diff)
-
program/localization/en_US/messages.inc (modified) (1 diff)
-
program/localization/pl_PL/messages.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r5318 r5319 2 2 =========================== 3 3 4 - Ignore DSN request when it isn't supported by SMTP server (#1487800) 4 5 - Make sure LDAP name fields aren't arrays (#1488108) 5 6 - Fixed imap test to non-default port when using ssl (#1488118) -
trunk/roundcubemail/program/include/rcube_smtp.php
r5033 r5319 215 215 $exts = $this->conn->getServiceExtensions(); 216 216 217 if (!isset($exts['DSN'])) { 218 $this->error = array('label' => 'smtpdsnerror'); 219 $this->response[] = "DSN not supported"; 220 return false; 221 } 222 223 $from_params = 'RET=HDRS'; 224 $recipient_params = 'NOTIFY=SUCCESS,FAILURE'; 217 if (isset($exts['DSN'])) { 218 $from_params = 'RET=HDRS'; 219 $recipient_params = 'NOTIFY=SUCCESS,FAILURE'; 220 } 225 221 } 226 222 -
trunk/roundcubemail/program/localization/en_US/messages.inc
r5276 r5319 129 129 $messages['smtptoerror'] = 'SMTP Error ($code): Failed to add recipient "$to" ($msg).'; 130 130 $messages['smtprecipientserror'] = 'SMTP Error: Unable to parse recipients list.'; 131 $messages['smtpdsnerror'] = 'SMTP Error: No support for Delivery Status Notifications.';132 131 $messages['smtperror'] = 'SMTP Error: $msg'; 133 132 $messages['emailformaterror'] = 'Invalid e-mail address: $email'; -
trunk/roundcubemail/program/localization/pl_PL/messages.inc
r5277 r5319 160 160 $messages['smtprecipientserror'] = 'BÅÄ 161 161 d SMTP: Parsowanie listy odbiorców nie powiodÅo siÄ.'; 162 $messages['smtpdsnerror'] = 'BÅÄ163 d SMTP: Statusy dostarczenia (DSN) nie sÄ164 obsÅugiwane przez serwer.';165 162 $messages['smtperror'] = 'BÅÄ 166 163 d SMTP: $msg';
Note: See TracChangeset
for help on using the changeset viewer.
