Closed
Bug 304490
Opened 19 years ago
Closed 19 years ago
Bugzilla does not successfully send e-mail through Mail::Mailer on Windows Systems
Categories
(Bugzilla :: Email Notifications, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 302418
People
(Reporter: tdtyson_list, Unassigned)
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.10) Gecko/20050716 Firefox/1.0.6
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.10) Gecko/20050716 Firefox/1.0.6
When using 2.20rc2 on a Windows 2000 System, Bugzilla does not successfully send
mail through smtp. It acts as if it sent the mail, but the mail is never
delivered. As a work around, I have replaced the code in
Bugzilla::BugMail::MessageToMTA with the following piece of code:
my ($msg) = (@_);
open(SENDMAIL, "|/usr/lib/sendmail -t -i") ||
die "Can't open sendmail";
print SENDMAIL trim($msg) . "\n";
close SENDMAIL;
This is NOT the best way to accomplish this, but it does still work as a stop gap.
Reproducible: Always
Steps to Reproduce:
1. Using Apache Web Server, ActiveState Perl 5.8.x, Bugzilla 2.20rc2
2. Modify a bug
3. Commit
Actual Results:
Message displays saying that the e-mail has been delivered. However, message is
never sent.
Expected Results:
Received e-mail about the change.yes, this is a duplicate. however for what it's worth i haven't encountered any issues with Mail::Mailer's smtp support on windows. there's common system problems (antivirus blocking port 25, smtp server issues) but the module itself functions. *** This bug has been marked as a duplicate of 302418 ***
Status: UNCONFIRMED → RESOLVED
Closed: 19 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•