Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use php functions instead of imap functions #1072

Open
wants to merge 1 commit into
base: release-3.7.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions public_html/lists/admin/bounce.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
$actionresult .= sprintf(s('Made subscriber %s confirmed').'<br />', $userid);
} else {
$actionresult .= sprintf(s('Made subscriber %s unconfirmed').'<br />', $userid);
}
}
}

if (!empty($userid) && $maketext) {
Expand Down Expand Up @@ -223,10 +223,10 @@

switch ($transfer_encoding) {
case 'quoted-printable':
$bounceBody = imap_qprint($bounce['data']);
$bounceBody = quoted_printable_decode($bounce['data']);
break;
case 'base64':
$bounceBody = imap_base64($bounce['data']);
$bounceBody = base64_decode($bounce['data']);
break;
case '7bit':
case '8bit':
Expand Down
4 changes: 2 additions & 2 deletions public_html/lists/admin/processbounces.php
Original file line number Diff line number Diff line change
Expand Up @@ -166,10 +166,10 @@ function decodeBody($header, $body)
}
switch ($transfer_encoding) {
case 'quoted-printable':
$decoded_body = @imap_qprint($body);
$decoded_body = quoted_printable_decode($body);
break;
case 'base64':
$decoded_body = @imap_base64($body);
$decoded_body = base64_decode($body);
break;
case '7bit':
case '8bit':
Expand Down
Loading