Version 1.5.2 - SVN
-------------------
+ - Fixed #1727033 (incorrect detection of auth mechanisms in config.pl)
- The search expression in the LDAP backend of the Addressbook is now
configurable, which can allow the result set to be expanded.
- Preliminary support for NAMESPACE in Squirrelmail IMAP Backend: NAMESPACE
print " ERROR TESTING\n";
close $sock;
} else {
+ $got = <$sock>; # Discard greeting
print $sock "HELO $domain\r\n";
$got = <$sock>; # Discard
print $sock "MAIL FROM:<tester\@squirrelmail.org>\r\n";
# So at this point, we have a response, and it is (hopefully) valid.
if ($service eq 'SMTP') {
- if (($response =~ /^535/) or ($response =~/^502/)) {
+ if (!($response =~ /^334/)) {
# Not supported
print $sock $logout;
close $sock;
return 'NO';
- } elsif ($response =~ /^503/) {
- #Something went wrong
- return undef;
}
} elsif ($service eq 'IMAP') {
if ($response =~ /^A01/) {