summaryrefslogtreecommitdiffstats
path: root/tdeio/misc/tdesendbugmail/main.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-07-26 21:57:50 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-07-26 21:57:50 +0900
commitdcb480334c2e8a53fd5ca421b6bd686ea594d4ac (patch)
treeceec30a117e991afff71c32d68a6e1eea1b7090d /tdeio/misc/tdesendbugmail/main.cpp
parent398bc87ef9d0ca9264b2d8bce7b8c2e3f134f49c (diff)
downloadtdelibs-dcb480334c2e8a53fd5ca421b6bd686ea594d4ac.tar.gz
tdelibs-dcb480334c2e8a53fd5ca421b6bd686ea594d4ac.zip
Revert "Fix bug reports link in about dialog"
This reverts commit 69fc44f5d55b813aeeb0c06473ceede28400e7bf.
Diffstat (limited to 'tdeio/misc/tdesendbugmail/main.cpp')
-rw-r--r--tdeio/misc/tdesendbugmail/main.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tdeio/misc/tdesendbugmail/main.cpp b/tdeio/misc/tdesendbugmail/main.cpp
index bf3099094..32465039d 100644
--- a/tdeio/misc/tdesendbugmail/main.cpp
+++ b/tdeio/misc/tdesendbugmail/main.cpp
@@ -20,7 +20,7 @@
static TDECmdLineOptions options[] = {
{ "subject <argument>", I18N_NOOP("Subject line"), 0 },
- { "recipient <argument>", I18N_NOOP("Recipient"), "submit@bugs.trinitydesktop.org" },
+ { "recipient <argument>", I18N_NOOP("Recipient"), "submit@bugs.kde.org" },
TDECmdLineLastOption
};
@@ -60,7 +60,7 @@ int main(int argc, char **argv) {
TDELocale::setMainCatalogue("tdelibs");
TDEAboutData d("tdesendbugmail", I18N_NOOP("KSendBugMail"), "1.0",
- I18N_NOOP("Sends a short bug report to submit@bugs.trinitydesktop.org"),
+ I18N_NOOP("Sends a short bug report to submit@bugs.kde.org"),
TDEAboutData::License_GPL, "(c) 2000 Stephan Kulow");
d.addAuthor("Stephan Kulow", I18N_NOOP("Author"), "coolo@kde.org");
@@ -72,7 +72,7 @@ int main(int argc, char **argv) {
TQCString recipient = args->getOption("recipient");
if (recipient.isEmpty())
- recipient = "submit@bugs.trinitydesktop.org";
+ recipient = "submit@bugs.kde.org";
else {
if (recipient.at(0) == '\'') {
recipient = recipient.mid(1).left(recipient.length() - 2);
@@ -117,7 +117,7 @@ int main(int argc, char **argv) {
TQString server = emailConfig.getSetting(KEMailSettings::OutServer);
if (server.isEmpty())
- server=TQString::fromLatin1("bugs.trinitydesktop.org");
+ server=TQString::fromLatin1("bugs.kde.org");
SMTP *sm = new SMTP;
BugMailer bm(sm);