diff options
Diffstat (limited to 'tdeioslave/smtp')
-rw-r--r-- | tdeioslave/smtp/CMakeLists.txt | 4 | ||||
-rw-r--r-- | tdeioslave/smtp/Makefile.am | 10 | ||||
-rw-r--r-- | tdeioslave/smtp/capabilities.cc | 2 | ||||
-rw-r--r-- | tdeioslave/smtp/capabilities.h | 2 | ||||
-rw-r--r-- | tdeioslave/smtp/command.cc | 4 | ||||
-rw-r--r-- | tdeioslave/smtp/command.h | 2 | ||||
-rw-r--r-- | tdeioslave/smtp/interactivesmtpserver.cc | 2 | ||||
-rw-r--r-- | tdeioslave/smtp/interactivesmtpserver.h | 2 | ||||
-rw-r--r-- | tdeioslave/smtp/request.cc | 2 | ||||
-rw-r--r-- | tdeioslave/smtp/request.h | 2 | ||||
-rw-r--r-- | tdeioslave/smtp/response.cc | 2 | ||||
-rw-r--r-- | tdeioslave/smtp/response.h | 2 | ||||
-rw-r--r-- | tdeioslave/smtp/smtp.cc | 6 | ||||
-rw-r--r-- | tdeioslave/smtp/smtp.protocol | 2 | ||||
-rw-r--r-- | tdeioslave/smtp/smtps.protocol | 2 | ||||
-rw-r--r-- | tdeioslave/smtp/transactionstate.cc | 2 | ||||
-rw-r--r-- | tdeioslave/smtp/transactionstate.h | 2 |
17 files changed, 25 insertions, 25 deletions
diff --git a/tdeioslave/smtp/CMakeLists.txt b/tdeioslave/smtp/CMakeLists.txt index 57095a364..f9171e665 100644 --- a/tdeioslave/smtp/CMakeLists.txt +++ b/tdeioslave/smtp/CMakeLists.txt @@ -26,9 +26,9 @@ link_directories( install( FILES smtp.protocol smtps.protocol DESTINATION ${SERVICES_INSTALL_DIR} ) -##### kio_smtp (module) ######################### +##### tdeio_smtp (module) ######################### -set( target kio_smtp ) +set( target tdeio_smtp ) tde_add_kpart( ${target} AUTOMOC SOURCES smtp.cc request.cc response.cc capabilities.cc command.cc transactionstate.cc diff --git a/tdeioslave/smtp/Makefile.am b/tdeioslave/smtp/Makefile.am index 7808a24db..e6db9885c 100644 --- a/tdeioslave/smtp/Makefile.am +++ b/tdeioslave/smtp/Makefile.am @@ -1,11 +1,11 @@ INCLUDES= -I$(srcdir)/../.. -I$(srcdir)/.. $(SSL_INCLUDES) $(all_includes) -kde_module_LTLIBRARIES = kio_smtp.la +kde_module_LTLIBRARIES = tdeio_smtp.la -kio_smtp_la_SOURCES = smtp.cc request.cc response.cc capabilities.cc command.cc transactionstate.cc -kio_smtp_la_LIBADD = $(LIB_KIO) $(SASL2_LIBS) -kio_smtp_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) +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_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) noinst_HEADERS = smtp.h request.h response.h capabilities.h command.h transactionstate.h @@ -25,7 +25,7 @@ test_responseparser_LDADD = $(LIB_TDECORE) test_responseparser_LDFLAGS = $(all_libraries) test_commands_SOURCES = test_commands.cc -test_commands_LDADD = $(kio_smtp_la_LIBADD) +test_commands_LDADD = $(tdeio_smtp_la_LIBADD) test_commands_LDFLAGS = $(all_libraries) interactivesmtpserver_SOURCES = interactivesmtpserver.cc diff --git a/tdeioslave/smtp/capabilities.cc b/tdeioslave/smtp/capabilities.cc index bf91071b3..f4f20fa7a 100644 --- a/tdeioslave/smtp/capabilities.cc +++ b/tdeioslave/smtp/capabilities.cc @@ -1,7 +1,7 @@ /* -*- c++ -*- capabilities.cc - This file is part of kio_smtp, the KDE SMTP tdeioslave. + This file is part of tdeio_smtp, the KDE SMTP tdeioslave. Copyright (c) 2003 Marc Mutz <mutz@kde.org> This program is free software; you can redistribute it and/or modify it diff --git a/tdeioslave/smtp/capabilities.h b/tdeioslave/smtp/capabilities.h index 5004cbaac..1af13e365 100644 --- a/tdeioslave/smtp/capabilities.h +++ b/tdeioslave/smtp/capabilities.h @@ -1,7 +1,7 @@ /* -*- c++ -*- capabilities.h - This file is part of kio_smtp, the KDE SMTP tdeioslave. + This file is part of tdeio_smtp, the KDE SMTP tdeioslave. Copyright (c) 2003 Marc Mutz <mutz@kde.org> This program is free software; you can redistribute it and/or modify it diff --git a/tdeioslave/smtp/command.cc b/tdeioslave/smtp/command.cc index 3817d5fd6..8543f6c03 100644 --- a/tdeioslave/smtp/command.cc +++ b/tdeioslave/smtp/command.cc @@ -1,7 +1,7 @@ /* -*- c++ -*- command.cc - This file is part of kio_smtp, the KDE SMTP tdeioslave. + This file is part of tdeio_smtp, the KDE SMTP tdeioslave. Copyright (c) 2003 Marc Mutz <mutz@kde.org> This program is free software; you can redistribute it and/or modify it @@ -239,7 +239,7 @@ static sasl_callback_t callbacks[] = { kdDebug(7112) << "Mechanism: " << mMechusing << " one step: " << mOneStep << endl; #else mSMTP->error(TDEIO::ERR_COULD_NOT_AUTHENTICATE, - i18n("Authentication support is not compiled into kio_smtp.")); + i18n("Authentication support is not compiled into tdeio_smtp.")); #endif } diff --git a/tdeioslave/smtp/command.h b/tdeioslave/smtp/command.h index 48d08df22..c634d1a86 100644 --- a/tdeioslave/smtp/command.h +++ b/tdeioslave/smtp/command.h @@ -1,7 +1,7 @@ /* -*- c++ -*- command.h - This file is part of kio_smtp, the KDE SMTP tdeioslave. + This file is part of tdeio_smtp, the KDE SMTP tdeioslave. Copyright (c) 2003 Marc Mutz <mutz@kde.org> This program is free software; you can redistribute it and/or modify it diff --git a/tdeioslave/smtp/interactivesmtpserver.cc b/tdeioslave/smtp/interactivesmtpserver.cc index 7e84b8d3e..5f25ca1ca 100644 --- a/tdeioslave/smtp/interactivesmtpserver.cc +++ b/tdeioslave/smtp/interactivesmtpserver.cc @@ -3,7 +3,7 @@ Code based on the serverSocket example by Jesper Pedersen. - This file is part of the testsuite of kio_smtp, the KDE SMTP tdeioslave. + This file is part of the testsuite of tdeio_smtp, the KDE SMTP tdeioslave. Copyright (c) 2004 Marc Mutz <mutz@kde.org> This program is free software; you can redistribute it and/or modify it diff --git a/tdeioslave/smtp/interactivesmtpserver.h b/tdeioslave/smtp/interactivesmtpserver.h index 3e4b4b29d..b4731d44c 100644 --- a/tdeioslave/smtp/interactivesmtpserver.h +++ b/tdeioslave/smtp/interactivesmtpserver.h @@ -6,7 +6,7 @@ Code based on the serverSocket example by Jesper Pedersen. - This file is part of the testsuite of kio_smtp, the KDE SMTP tdeioslave. + This file is part of the testsuite of tdeio_smtp, the KDE SMTP tdeioslave. Copyright (c) 2004 Marc Mutz <mutz@kde.org> This program is free software; you can redistribute it and/or modify it diff --git a/tdeioslave/smtp/request.cc b/tdeioslave/smtp/request.cc index 8019a04f7..4e3cde0e1 100644 --- a/tdeioslave/smtp/request.cc +++ b/tdeioslave/smtp/request.cc @@ -1,7 +1,7 @@ /* -*- c++ -*- request.cc - This file is part of kio_smtp, the KDE SMTP tdeioslave. + This file is part of tdeio_smtp, the KDE SMTP tdeioslave. Copyright (c) 2003 Marc Mutz <mutz@kde.org> This program is free software; you can redistribute it and/or modify it diff --git a/tdeioslave/smtp/request.h b/tdeioslave/smtp/request.h index 21e2067fb..37d74d2de 100644 --- a/tdeioslave/smtp/request.h +++ b/tdeioslave/smtp/request.h @@ -1,7 +1,7 @@ /* -*- c++ -*- request.h - This file is part of kio_smtp, the KDE SMTP tdeioslave. + This file is part of tdeio_smtp, the KDE SMTP tdeioslave. Copyright (c) 2003 Marc Mutz <mutz@kde.org> This program is free software; you can redistribute it and/or modify it diff --git a/tdeioslave/smtp/response.cc b/tdeioslave/smtp/response.cc index da5569cf7..6c29d31bf 100644 --- a/tdeioslave/smtp/response.cc +++ b/tdeioslave/smtp/response.cc @@ -1,7 +1,7 @@ /* -*- c++ -*- response.cc - This file is part of kio_smtp, the KDE SMTP tdeioslave. + This file is part of tdeio_smtp, the KDE SMTP tdeioslave. Copyright (c) 2003 Marc Mutz <mutz@kde.org> This program is free software; you can redistribute it and/or modify it diff --git a/tdeioslave/smtp/response.h b/tdeioslave/smtp/response.h index 6c749b9e4..f2caf62e0 100644 --- a/tdeioslave/smtp/response.h +++ b/tdeioslave/smtp/response.h @@ -1,7 +1,7 @@ /* -*- c++ -*- response.h - This file is part of kio_smtp, the KDE SMTP tdeioslave. + This file is part of tdeio_smtp, the KDE SMTP tdeioslave. Copyright (c) 2003 Marc Mutz <mutz@kde.org> This program is free software; you can redistribute it and/or modify it diff --git a/tdeioslave/smtp/smtp.cc b/tdeioslave/smtp/smtp.cc index aa3ebfe75..3dfb8a053 100644 --- a/tdeioslave/smtp/smtp.cc +++ b/tdeioslave/smtp/smtp.cc @@ -95,11 +95,11 @@ extern "C" { int kdemain(int argc, char **argv) { - TDEInstance instance("kio_smtp"); + TDEInstance instance("tdeio_smtp"); if (argc != 4) { fprintf(stderr, - "Usage: kio_smtp protocol domain-socket1 domain-socket2\n"); + "Usage: tdeio_smtp protocol domain-socket1 domain-socket2\n"); exit(-1); } @@ -199,7 +199,7 @@ void SMTPProtocol::put(const KURL & url, int /*permissions */ , KEMailSettings mset; KURL open_url = url; if ( !request.hasProfile() ) { - //kdDebug(7112) << "kio_smtp: Profile is null" << endl; + //kdDebug(7112) << "tdeio_smtp: Profile is null" << endl; bool hasProfile = mset.profiles().contains( open_url.host() ); if ( hasProfile ) { mset.setProfile(open_url.host()); diff --git a/tdeioslave/smtp/smtp.protocol b/tdeioslave/smtp/smtp.protocol index 9a90cc397..4e757c7bd 100644 --- a/tdeioslave/smtp/smtp.protocol +++ b/tdeioslave/smtp/smtp.protocol @@ -1,5 +1,5 @@ [Protocol] -exec=kio_smtp +exec=tdeio_smtp protocol=smtp Capabilities=SASL input=none diff --git a/tdeioslave/smtp/smtps.protocol b/tdeioslave/smtp/smtps.protocol index 2087845f2..177458777 100644 --- a/tdeioslave/smtp/smtps.protocol +++ b/tdeioslave/smtp/smtps.protocol @@ -1,5 +1,5 @@ [Protocol] -exec=kio_smtp +exec=tdeio_smtp protocol=smtps Capabilities=SASL input=none diff --git a/tdeioslave/smtp/transactionstate.cc b/tdeioslave/smtp/transactionstate.cc index 886fe35b5..71a3e682c 100644 --- a/tdeioslave/smtp/transactionstate.cc +++ b/tdeioslave/smtp/transactionstate.cc @@ -1,7 +1,7 @@ /* -*- c++ -*- transactionstate.cc - This file is part of kio_smtp, the KDE SMTP tdeioslave. + This file is part of tdeio_smtp, the KDE SMTP tdeioslave. Copyright (c) 2003 Marc Mutz <mutz@kde.org> This program is free software; you can redistribute it and/or modify it diff --git a/tdeioslave/smtp/transactionstate.h b/tdeioslave/smtp/transactionstate.h index c62f52ae0..a5a78f49c 100644 --- a/tdeioslave/smtp/transactionstate.h +++ b/tdeioslave/smtp/transactionstate.h @@ -1,7 +1,7 @@ /* -*- c++ -*- transactionstate.h - This file is part of kio_smtp, the KDE SMTP tdeioslave. + This file is part of tdeio_smtp, the KDE SMTP tdeioslave. Copyright (c) 2003 Marc Mutz <mutz@kde.org> This program is free software; you can redistribute it and/or modify it |