I tried it again to download the sources .. The link I get through your site is
http://march-hare.com/archive/cvsnt-2.5.04.3236.tar.gz atest changelog entry is 2008-11-03 00:45 abarrett * ChangeLog, build.h: Build 2.5.04.3235 Opened it, view the triggers/email_trigger.cpp and see inside bool CSmtpMailIo::start_mail(const char *from, const std::vector<cvs::string>& to) ........ } if(!get_smtp_response(m_sock)) return false; for(size_t n=0; n<to.size(); n++) { if(strchr(to[n].c_str(),'@') || !emaildomain[0]) { CServerIo::trace(3,"SMTP C: RCPT TO:<%s>",to[n].c_str()); m_sock.printf("RCPT TO:<%s>\r\n",to[n].c_str()); } else { 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); ........................................ <s...@%s> bug is still there.... valid download from your site ________________________________ From: Arthur Barrett <[email protected]> To: Bart S <[email protected]>; [email protected] Sent: Tuesday, 16 December, 2008 22:56:27 Subject: RE: [cvsnt] How to invoke internal mailer Message Bart, You downloaded the ZIP file of 2.5.03. The newer 2.5.04 and 2.5.05 zip files are in cvsnt.org/archive, but regardless the best and easiest way to look at the sources is to use your CVSNT client (in fact the Suite Studio free edition in 2.5.04 even allows you to browse the cvs.cvsnt.org repo and open files without checking out to your desktop). The 2.5.04 source ZIP will be available on march-hare.com in due course. Regards, Arthur _______________________________________________ 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/
