This is a discussion on [courier-users] [patch] Mailing list subscription fix within the Courier-Imap forums, part of the Mail Servers and Related category; Hello, While configuring a mailing list (courier 0.47), I noticed that subscription did not work when SUBSCRIBE=mod option ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hello,
While configuring a mailing list (courier 0.47), I noticed that subscription did not work when SUBSCRIBE=mod option was set. Here's a patch to fix the problem: --- courier-0.47/courier/cmlmsubunsubmsg.C 2001-08-05 23:00:33.000000000 +0300 +++ courier-0.47-new/courier/cmlmsubunsubmsg.C 2005-03-08 16:30:01.000000000 +0200 @@ -130,7 +130,7 @@ } if (subfilename.GetLength() <= 0 || - (token << ifs) || !goodconfirm(msg)) + (token << ifs) || goodconfirm(msg) == -1) { cerr << "Invalid confirmation." << endl; return (EX_SOFTWARE); Regards, Aki Immonen ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ courier-users mailing list courier-users@lists.sourceforge.net Unsubscribe: https://lists.sourceforge.net/lists/.../courier-users |