-
Updated
Dec 4, 2020 - C#
pop3
Here are 127 public repositories matching this topic...
-
Updated
Dec 16, 2020 - Python
Fix homebrew tap
Homebrew tap is way out of date, goreleaser should be able to generate a new one. Not sure if it will help with launching Inbucket at boot.
When using default settings, users will experience fewer bugs. So when there are issues, resetting to the default can be a quick fix/workaround. And this can lead to better bug reports.
We did this in Tiki for http://doc.tiki.org/Site-configuration-preferences. I got used to it and miss it in other applications. Basically, it shows user which settings have been modified and lets them reset to
-
Updated
Dec 3, 2020 - Python
-
Updated
Dec 4, 2020 - Java
-
Updated
Dec 1, 2020 - Java
-
Updated
Dec 12, 2020 - C++
-
Updated
Dec 4, 2020 - C++
-
Updated
Nov 14, 2019 - PHP
-
Updated
Feb 22, 2019 - C
-
Updated
Oct 25, 2020 - PowerShell
Currently SMTP API users need to parse responses to ehlo() manually. There should be a high level API for accessing such data, e.g. to retrieve the maximum size of messages, if 8 bit / utf-8 messages are accepted, etc.
Sample response:
250-PIPELINING
250-SIZE 200000000
250-ETRN
250-AUTH PLAIN LOGIN OAUTHBEARER
250-AUTH=PLAIN LOGIN OAUTHBEARER
250-ENHANCEDSTATUSCODES
250-8BITMIME
-
Updated
Oct 26, 2020 - Python
-
Updated
Nov 21, 2020 - PHP
-
Updated
Oct 12, 2020 - HTML
Improve this page
Add a description, image, and links to the pop3 topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the pop3 topic, visit your repo's landing page and select "manage topics."
In #2761 I introduced a new API,
struct Mailbox *ctx_mailbox(struct Context* ctx), which has the sole purpose to avoid boilerplate likeif (Context && Context->mailbox).I would like to use the API more extensively, whenever
Context->mailboxis used. This needs to be done with care asContextis a global variable and its contents might change when calling other functions.This would