diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-09-03 20:01:54 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-09-03 20:58:45 +0200 |
commit | 3e88ddfbc3df52c97d5354890fb9ac68af49bddd (patch) | |
tree | f6830215ebdc83e794a7a223042537595490265f /tdeioslave/smtp | |
parent | 5607b4ae2272da03b692475c2f773f3e27e671b8 (diff) | |
download | tdebase-3e88ddfbc3df52c97d5354890fb9ac68af49bddd.tar.gz tdebase-3e88ddfbc3df52c97d5354890fb9ac68af49bddd.zip |
Additional k => tde renaming and fixes
Diffstat (limited to 'tdeioslave/smtp')
-rw-r--r-- | tdeioslave/smtp/Makefile.am | 2 | ||||
-rw-r--r-- | tdeioslave/smtp/TODO | 2 | ||||
-rw-r--r-- | tdeioslave/smtp/compliance.txt | 2 | ||||
-rw-r--r-- | tdeioslave/smtp/response.h | 2 | ||||
-rw-r--r-- | tdeioslave/smtp/transactionstate.h | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/tdeioslave/smtp/Makefile.am b/tdeioslave/smtp/Makefile.am index e6db9885c..5d0ad64c0 100644 --- a/tdeioslave/smtp/Makefile.am +++ b/tdeioslave/smtp/Makefile.am @@ -4,7 +4,7 @@ INCLUDES= -I$(srcdir)/../.. -I$(srcdir)/.. $(SSL_INCLUDES) $(all_includes) kde_module_LTLIBRARIES = tdeio_smtp.la tdeio_smtp_la_SOURCES = smtp.cc request.cc response.cc capabilities.cc command.cc transactionstate.cc -tdeio_smtp_la_LIBADD = $(LIB_KIO) $(SASL2_LIBS) +tdeio_smtp_la_LIBADD = $(LIB_TDEIO) $(SASL2_LIBS) tdeio_smtp_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) noinst_HEADERS = smtp.h request.h response.h capabilities.h command.h transactionstate.h diff --git a/tdeioslave/smtp/TODO b/tdeioslave/smtp/TODO index cad79f139..bdfc54258 100644 --- a/tdeioslave/smtp/TODO +++ b/tdeioslave/smtp/TODO @@ -4,7 +4,7 @@ SMTP server that supports it). 3. Better error message (translated standard meanings of the known response codes, ENHANCEDSTATUSCODES extension (rfc2034)). -4. (KIO) MultiPutJob to support pipelining across messages. +4. (TDEIO) MultiPutJob to support pipelining across messages. 5. Ged rid of slave's header generation after checking who on earth uses that... diff --git a/tdeioslave/smtp/compliance.txt b/tdeioslave/smtp/compliance.txt index 5b305a765..52acb2aa7 100644 --- a/tdeioslave/smtp/compliance.txt +++ b/tdeioslave/smtp/compliance.txt @@ -29,5 +29,5 @@ General: Known shortcomings: - Doesn't enforce the CRLF lineending convention on user-supplied data. -- Due to the lack of a Mulit_Put_ in the KIO infrastructure, pipelining +- Due to the lack of a Mulit_Put_ in the TDEIO infrastructure, pipelining across messages isn't supported. diff --git a/tdeioslave/smtp/response.h b/tdeioslave/smtp/response.h index f2caf62e0..97220661f 100644 --- a/tdeioslave/smtp/response.h +++ b/tdeioslave/smtp/response.h @@ -56,7 +56,7 @@ namespace KioSMTP { /** Return an internationalized error message according to the response's code. */ TQString errorMessage() const; - /** Translate the SMTP error code into a KIO one */ + /** Translate the SMTP error code into a TDEIO one */ int errorCode() const; enum Reply { diff --git a/tdeioslave/smtp/transactionstate.h b/tdeioslave/smtp/transactionstate.h index a5a78f49c..ec39e3ac6 100644 --- a/tdeioslave/smtp/transactionstate.h +++ b/tdeioslave/smtp/transactionstate.h @@ -102,7 +102,7 @@ namespace KioSMTP { bool complete() const { return mComplete; } void setComplete() { mComplete = true; } - /** @return an appropriate KIO error code in case the transaction + /** @return an appropriate TDEIO error code in case the transaction failed, or 0 otherwise */ int errorCode() const; /** @return an appropriate error message in case the transaction |