Changes between Initial Version and Version 12 of Ticket #5294
- Timestamp:
- 10/31/2007 08:14:26 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5294
-
Property
Status
changed from
new
toassigned
-
Property
Summary
changed from
$phpmailer->Sender line prevents comment notifications from being sent
to$phpmailer->Sender line prevents comment notifications from being received
-
Property
Version
changed from
to
2.3.1
-
Property
Milestone
changed from
2.5
to2.3.2
- Property Owner changed from anonymous to westi
-
Property
Status
changed from
-
Ticket #5294 – Description
initial v12 1 This line was added to the wp-includes/pluggable.php file in WP 2.3.1: 1 $phpmailer->Sender line prevents comment notifications from being received on hosts that do "callout verification" unless wordpress@[domain] is a valid email address. 2 3 WORKAROUNDS 4 5 Ensure, that the email address wordpress@[domain] is a valid email address. 6 7 OR 8 9 Remove wp-includes/pluggable.php file in WP 2.3.1: 2 10 3 11 {{{ 4 12 228 $phpmailer->Sender = apply_filters( 'wp_mail_from', $from_email ); 5 13 }}} 6 7 It's inclusion prevents any comment notifications on any WordPress installation from being sent via email. I've had to remove it from all installations.