Closed
Bug 328019
Opened 20 years ago
Closed 20 years ago
not response after send email by smtp metod
Categories
(Bugzilla :: Email Notifications, defect)
Tracking
()
RESOLVED
INVALID
People
(Reporter: bugzilla.10.deep125, Unassigned)
Details
Attachments
(1 file)
|
2.21 KB,
text/plain
|
Details |
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MyIE2; .NET CLR 1.1.4322)
Build Identifier: 2.21.1+(download by CVS from 2006-02-20)
No work smtp send. "testfile" metod work
Reproducible: Always
Steps to Reproduce:
1.Make bug with summary in russian
Actual Results:
No error, browser wait responce.
Expected Results:
in version 2.21.1 all work good.
I am resolve this problem make next change in file Bugzilla\BugMail.pm
Old code
-------
if (Param("mail_delivery_method") eq "smtp") {
push @args, Server => Param("smtpserver");
if ($from) {
$ENV{'MAILADDRESS'} = $from;
}
}
------
new code
------
if (Param("mail_delivery_method") eq "smtp") {
push @args, Server => Param("smtpserver");
# if ($from) {
# $ENV{'MAILADDRESS'} = $from;
# }
}
---------------------
configuraton of server look in bug 328013
Comment 1•20 years ago
|
||
What the heck does the From line have to do with the summary? This is just weird... Does your From address in the newchangedmail param have Russian characters in it by any chance? (IIRC, headers have to be mime-encoded if they're non-ascii, I think we only do that automatically on the Subject line because of the summary).
> (IIRC, headers have to be mime-encoded if
> they're non-ascii, I think we only do that automatically on the Subject line
> because of the summary).
the from address _is_ encoded (along with to cc reply-to sender and errors-to) however only the comments section of the address is encoded.
> Does your From address in the newchangedmail param have Russian characters
> in it by any chance?
i second that question :)
| Reporter | ||
Comment 3•20 years ago
|
||
I am look content of $from variable
$from == ""
Empty!!!!
(In reply to comment #3)
> I am look content of $from variable
> $from == ""
> Empty!!!!
if $from is empty then that code won't execute, so it won't make a difference.
Does your From address in the newchangedmail param have Russian characters?
| Reporter | ||
Comment 5•20 years ago
|
||
It content of mails
> From: bugzilla-daemon
try setting this to a real email address (in params) -- most smtp servers will reject messages unless there's it's from a valid email address.
| Reporter | ||
Comment 7•20 years ago
|
||
I am set this to a real email.
"Old Code" work !!!
I must change all mail templates on Bugzilla?
ok, this bug is invalid then (not a bugzilla bug).
you will need to change all occurances; bug 135812 is about making this easier :)
Status: UNCONFIRMED → RESOLVED
Closed: 20 years ago
Resolution: --- → INVALID
You need to log in
before you can comment on or make changes to this bug.
Description
•