-
Notifications
You must be signed in to change notification settings - Fork 163
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
feat(other): add All Snoozed button and Icon to left menu #1375
base: master
Are you sure you want to change the base?
Conversation
d9f9e94
to
2795955
Compare
Can you fix the unit tests? |
2795955
to
173aef0
Compare
173aef0
to
cf56143
Compare
I've fixed the unit tests, resolved the conflicts, and pushed the changes. |
modules/imap/functions.php
Outdated
@@ -34,6 +34,9 @@ function imap_sources($mod, $folder = 'sent') { | |||
elseif ($inbox) { | |||
$sources[] = array('folder' => bin2hex('INBOX'), 'type' => 'imap', 'name' => $vals['name'], 'id' => $index); | |||
} | |||
elseif ($folder=="snoozed"){ | |||
$sources[] = array('callback' => $callback, 'folder' => bin2hex('Snoozed'), 'type' => 'imap', 'name' => $vals['name'], 'id' => $index); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Master doesn't use callback anymore, it seems.
Also, I just merged the EWS stuff, please rebase against latest master and resolve any conflicts. There should be a folder_name here after you rebase.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the update, @kroky !
I'll rebase against the latest master, resolve the conflicts, and look into the folder_name issue.
I'll get back to you shortly.
cf56143
to
5a1cd41
Compare
Issues
#1302