Home
last modified time | relevance | path

Searched refs:SmtpError (Results 1 – 25 of 31) sorted by relevance

12

/dports/mail/py-python-slimta/python-slimta-4.2.1/slimta/smtp/
H A D__init__.py34 class SmtpError(SlimtaError): class
39 class ConnectionLost(SmtpError):
47 class MessageTooBig(SmtpError):
58 class BadReply(SmtpError):
H A Dauth.py30 from . import SmtpError
39 class ServerAuthError(SmtpError):
H A Dserver.py35 from . import SmtpError, ConnectionLost
148 except SmtpError as e:
/dports/textproc/htmltest/htmltest-0.15.0/vendor/github.com/badoux/checkmail/
H A Dcheckmail.go13 type SmtpError struct { struct
17 func (e SmtpError) Error() string { argument
21 func (e SmtpError) Code() string { argument
25 func NewSmtpError(err error) SmtpError {
26 return SmtpError{
H A DREADME.md46 if smtpErr, ok := err.(checkmail.SmtpError); ok && err != nil {
/dports/www/anyterm/anyterm-1.1.29/libpbe/src/
H A DSmtpClient.cc36 void SmtpError::report(ostream& s) const in report()
61 throw SmtpError("Timeout"); in wait_for_reply()
79 throw SmtpError("Command line did not terminate"); in wait_for_reply()
85 throw SmtpError("No reply code at start of line"); in wait_for_reply()
88 throw SmtpError("Unexpected reply: \'"+string(buf)+"\'"); in wait_for_reply()
/dports/mail/geary/geary-40.0/src/engine/smtp/
H A Dsmtp-client-session.vala52 throw new SmtpError.ALREADY_CONNECTED("Connection to %s already exists", to_string());
57 throw new SmtpError.ALREADY_CONNECTED("Connection to %s already exists", to_string());
105 throw new SmtpError.AUTHENTICATION_FAILED(
116 throw new SmtpError.AUTHENTICATION_FAILED(
125 throw new SmtpError.AUTHENTICATION_FAILED(
157 throw new SmtpError.AUTHENTICATION_FAILED("Unable to authenticate with %s", to_string());
188 throw new SmtpError.NOT_CONNECTED("Not connected to %s", to_string());
212 throw new SmtpError.REQUIRED_FIELD("No recipients in message");
H A Dsmtp-response-line.vala25 public static ResponseLine deserialize(string line) throws SmtpError {
28 throw new SmtpError.PARSE_ERROR("Line too short: %s", line);
51 throw new SmtpError.PARSE_ERROR("Invalid response line separator: %s", line);
H A Dsmtp-response.vala21 public void throw_error(string msg) throws SmtpError {
22 throw new SmtpError.SERVER_ERROR("%s: %s", msg, first_line.to_string());
H A Dsmtp-response-code.vala36 public ResponseCode(string str) throws SmtpError {
39 throw new SmtpError.PARSE_ERROR("Reply code wrong length: %s (%d)", str, str.length);
43 throw new SmtpError.PARSE_ERROR("Reply code out of range: %s", str);
H A Dsmtp-command.vala60 public static Command deserialize(string str) throws SmtpError {
96 throw new SmtpError.PARSE_ERROR("Unknown command \"%s\"", str);
H A Dsmtp-client-service.vala185 } catch (SmtpError err) {
186 if (err is SmtpError.AUTHENTICATION_FAILED) {
188 } else if (err is SmtpError.STARTTLS_FAILED ||
189 err is SmtpError.NOT_CONNECTED) {
191 } else if (err is SmtpError.PARSE_ERROR ||
192 err is SmtpError.SERVER_ERROR ||
193 err is SmtpError.NOT_SUPPORTED) {
256 throw new SmtpError.AUTHENTICATION_FAILED("Credentials not loaded");
310 throw new SmtpError.AUTHENTICATION_FAILED("Token not loaded");
H A Dsmtp-client-connection.vala214 … throw new SmtpError.SERVER_ERROR("Refused service: \"%s\" and \"%s\"", first_response,
242 throw new SmtpError.NOT_SUPPORTED(
249 throw new SmtpError.STARTTLS_FAILED("STARTTLS failed: %s", response.to_string());
287 throw new SmtpError.NOT_CONNECTED("Not connected to %s", to_string());
H A Dsmtp-error.vala11 public errordomain Geary.SmtpError {
H A Dsmtp-login-authenticator.vala24 public override Memory.Buffer? challenge(int step, Response response) throws SmtpError {
H A Dsmtp-plain-authenticator.vala24 public override Memory.Buffer? challenge(int step, Response response) throws SmtpError {
H A Dsmtp-oauth2-authenticator.vala29 throws SmtpError {
H A Dsmtp-authenticator.vala47 public abstract Memory.Buffer? challenge(int step, Response response) throws SmtpError;
/dports/www/anyterm/anyterm-1.1.29/libpbe/include/
H A DSmtpClient.hh28 class SmtpError: public pbe::Exception { class
32 SmtpError(string m): msg(m) {} in SmtpError() function in SmtpError
/dports/mail/geary/geary-40.0/test/integration/smtp/
H A Dclient-session.vala60 } catch (Geary.SmtpError.AUTHENTICATION_FAILED err) {
77 } catch (Geary.SmtpError.AUTHENTICATION_FAILED err) {
/dports/mail/py-python-slimta/python-slimta-4.2.1/slimta/relay/smtp/
H A Dclient.py30 from slimta.smtp import SmtpError
248 except SmtpError:
289 except SmtpError as e:
/dports/misc/actiona/actiona-3.10.1/actiontools/qxtsmtp/
H A Dqxtsmtp.h46 enum SmtpError enum
/dports/games/cockatrice/Cockatrice-2021-01-26-Release-2.8.0/servatrice/src/smtp/
H A Dqxtsmtp.h43 enum SmtpError enum
/dports/mail/libmilter/sendmail-8.16.1/sendmail/
H A Ddeliver.c1388 SmtpError[0] = '\0';
2240 (void) sm_strlcpy(SmtpError,
2242 sizeof(SmtpError));
3258 (void) sm_strlcpy(SmtpError, p,
3259 sizeof(SmtpError));
3381 (void) sm_strlcpy(SmtpError,
3383 sizeof(SmtpError));
3444 (void) sm_snprintf(SmtpError, sizeof(SmtpError),
3510 (void) sm_snprintf(SmtpError, sizeof(SmtpError),
4238 statmsg = SmtpError;
[all …]
/dports/mail/py-python-slimta/python-slimta-4.2.1/test/
H A Dtest_slimta_relay_smtp_client.py12 from slimta.smtp import ConnectionLost, SmtpError
416 self.sock.recv(IsA(int)).AndRaise(SmtpError('test error'))

12