Skip to content

Commit

Permalink
Remove POP3 from error message when unable to connect to bounce mailb…
Browse files Browse the repository at this point in the history
…ox (#1066)

* update PR template

* Remove POP3 from error message

---------

Co-authored-by: Michiel Dethmers <[email protected]>
  • Loading branch information
bramley and michield authored Jan 26, 2025
1 parent a1405cc commit cc3af76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public_html/lists/admin/processbounces.php
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ function processPop($server, $user, $password)
$link = imap_open($mailbox, $user, $password);

if (!$link) {
outputProcessBounce($GLOBALS['I18N']->get('Cannot create POP3 connection to')." $mailbox: ".imap_last_error());
outputProcessBounce($GLOBALS['I18N']->get('Cannot create connection to')." $mailbox: ".imap_last_error());

return false;
}
Expand Down

0 comments on commit cc3af76

Please sign in to comment.