Activity log for bug #86425

Date Who What changed Old value New value Message
2007-02-20 05:24:06 Pablo Castellazzi bug added bug
2007-02-20 05:25:21 Pablo Castellazzi description Binary package hint: ssmtp Ubuntu Edgy / sSMTP 2.61 When you use smtp authentication and the password contains a ":" (colon) sSMTP send an incomplete password to the server. I mean if AuthPass is set to Pepe:49, sSMTP only send Pepe. It can be fixed with the following patch: --- ssmtp-2.61/ssmtp.c 2007-02-19 23:16:03.000000000 -0600 +++ ssmtp-fixed.c 2007-02-19 23:17:59.000000000 -0600 @@ -881,7 +881,7 @@ bool_t read_config() p=firsttok(&begin, "= \t\n"); if(p){ rightside=begin; - q = firsttok(&begin, "= \t\n:"); + q = firsttok(&begin, "= \t\n"); } if(p && q) { if(strcasecmp(p, "Root") == 0) { @@ -894,15 +894,15 @@ bool_t read_config() } } else if(strcasecmp(p, "MailHub") == 0) { + if((r = strchr(q, ':')) != NULL) { + *r++ = '\0'; + port = atoi(r); + } + if((mailhost = strdup(q)) == (char *)NULL) { die("parse_config() -- strdup() failed"); } - if((r = firsttok(&begin, "= \t\n:")) != NULL) { - port = atoi(r); - free(r); - } - if(log_level > 0) { log_event(LOG_INFO, "Set MailHub=\"%s\"\n", mailhost); log_event(LOG_INFO, "Set RemotePort=\"%d\"\n", port); Binary package hint: ssmtp Ubuntu Edgy / sSMTP 2.61 When you use smtp authentication and the password contains a ":" (colon) sSMTP send an incomplete password to the server. I mean if AuthPass is set to Pepe:49, sSMTP only send Pepe.
2007-02-20 05:29:05 Pablo Castellazzi bug added attachment 'password-handling-fix.patch' (Password handling fix, 1st try)
2007-03-09 21:53:42 Barry deFreese bug added subscriber Ubuntu Sponsors for universe
2007-06-07 14:28:21 Emmet Hikory ssmtp: status Unconfirmed Confirmed
2007-06-07 14:28:21 Emmet Hikory ssmtp: importance Undecided Low
2007-06-07 14:28:21 Emmet Hikory ssmtp: statusexplanation
2007-06-11 16:57:02 Andrea Veri bug added attachment 'ssmtp.debdiff' (ssmtp.debdiff)
2007-06-11 16:57:38 Andrea Veri bug added subscriber Ubuntu Sponsors for universe
2007-06-11 17:07:52 Andrea Veri bug added attachment 'ssmtp2.debdiff' (ssmtp2.debdiff)
2007-06-11 22:03:08 Vladimír Lapáček ssmtp: status Confirmed Fix Released
2010-01-02 18:28:50 Benjamin Drung removed subscriber Ubuntu Sponsors for universe