weird. I downloaded the sources from march-hare.com yesterday and the same bug is in there. it was the reason to download the code that I can download from the march-hare.com website
________________________________ From: Arthur Barrett <[email protected]> To: Bart S <[email protected]>; [email protected] Sent: Tuesday, 16 December, 2008 22:49:13 Subject: RE: [cvsnt] How to invoke internal mailer Bart, > Any time to file the bug report that I mentioned before ? You mean this one: > > m_sock.printf("RCPT TO:<s...@%s>\r\n",to[n].c_str(),emaildomain); > ^^^ As can be seen from a quick look at the repository - Tony fixed that 2.5 years ago: ---------------------------- revision 1.1.2.24 date: 2006/06/02 09:20:03; author: tmh; state: Exp; lines: +4 -4; kopt: kv; filename: email_trigger.cpp; email trigger ---------------------------- cvs diff -r 1.1.2.23 -r 1.1.2.24 email_trigger.cpp Index: email_trigger.cpp =================================================================== RCS file: /usr/local/cvs/cvsnt/triggers/email_trigger.cpp,v retrieving revision 1.1.2.23 retrieving revision 1.1.2.24 diff -r1.1.2.23 -r1.1.2.24 1058,1059c1058,1059 < CServerIo::trace(3,"SMTP C: RCPT TO: %s",to[n].c_str()); < m_sock.printf("RCPT TO: %s\r\n",to[n].c_str()); --- > CServerIo::trace(3,"SMTP C: RCPT TO:<%s>",to[n].c_str()); > m_sock.printf("RCPT TO:<%s>\r\n",to[n].c_str()); 1063,1064c1063,1064 < CServerIo::trace(3,"SMTP C: RCPT TO: %...@%s",to[n].c_str(),emaildomain); < m_sock.printf("RCPT TO: %...@%s\r\n",to[n].c_str(),emaildomain); --- > CServerIo::trace(3,"SMTP C: RCPT TO:<%...@%s>",to[n].c_str(),emaildomain); > m_sock.printf("RCPT TO:<s...@%s>\r\n",to[n].c_str(),emaildomain); If you want to look at the CVSNT code please check out from cvs.cvsnt.org. Do not use extremely out of date web mirrors of the repository for basing any analysis on. We also strongly recommend that you run the latest stable release 2.5.04 and test all bugs against the testing release 2.5.05. Regards, Arthur Barrett _______________________________________________ cvsnt mailing list [email protected] http://www.cvsnt.org/cgi-bin/mailman/listinfo/cvsnt Upgrade to CVS Suite for more features and support: http://march-hare.com/cvsnt/
