diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:30:47 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:30:47 -0600 |
commit | cc74f360bb40da3d79f58048f8e8611804980aa6 (patch) | |
tree | c4385d2c16b904757b1c8bb998a4aec6993373f7 /kioslave/smtp/response.cc | |
parent | 79b21d47bce1ee428affc97534cd8b257232a871 (diff) | |
download | tdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.tar.gz tdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kioslave/smtp/response.cc')
-rw-r--r-- | kioslave/smtp/response.cc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kioslave/smtp/response.cc b/kioslave/smtp/response.cc index 8ae8cdceb..0ddce0e5a 100644 --- a/kioslave/smtp/response.cc +++ b/kioslave/smtp/response.cc @@ -119,41 +119,41 @@ namespace KioSMTP { case 454: // TLS not available due to temporary reason // Temporary authentication failure case 554: // Transaction failed / No SMTP service here / No valid recipients - return KIO::ERR_SERVICE_NOT_AVAILABLE; + return TDEIO::ERR_SERVICE_NOT_AVAILABLE; case 451: // Requested action aborted: local error in processing - return KIO::ERR_INTERNAL_SERVER; + return TDEIO::ERR_INTERNAL_SERVER; case 452: // Requested action not taken: insufficient system storage case 552: // Requested mail action aborted: exceeded storage allocation - return KIO::ERR_DISK_FULL; + return TDEIO::ERR_DISK_FULL; case 500: // Syntax error, command unrecognized case 501: // Syntax error in parameters or arguments case 502: // Command not implemented case 503: // Bad sequence of commands case 504: // Command parameter not implemented - return KIO::ERR_INTERNAL; + return TDEIO::ERR_INTERNAL; case 450: // Requested mail action not taken: mailbox unavailable case 550: // Requested action not taken: mailbox unavailable case 551: // User not local; please try <forward-path> case 553: // Requested action not taken: mailbox name not allowed - return KIO::ERR_DOES_NOT_EXIST; + return TDEIO::ERR_DOES_NOT_EXIST; case 530: // {STARTTLS,Authentication} required case 538: // Encryption required for requested authentication mechanism case 534: // Authentication mechanism is too weak - return KIO::ERR_UPGRADE_REQUIRED; + return TDEIO::ERR_UPGRADE_REQUIRED; case 432: // A password transition is needed - return KIO::ERR_COULD_NOT_AUTHENTICATE; + return TDEIO::ERR_COULD_NOT_AUTHENTICATE; default: if ( isPositive() ) return 0; else - return KIO::ERR_UNKNOWN; + return TDEIO::ERR_UNKNOWN; } } |