From d22a4531d81f517e800d8547091510dadea2004a Mon Sep 17 00:00:00 2001 From: Kevin Easton Date: Wed, 13 Jun 2012 12:34:32 +0000 Subject: [PATCH] Update old email addresses in user-visible messages. git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@206 13b04d17-f746-0410-82c6-800466cd88b0 --- include/irc.h | 1 + source/commands.c | 6 +++--- source/irc.c | 2 +- source/ircaux.c | 8 ++++---- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/include/irc.h b/include/irc.h index d4f6fcc..b3829ff 100644 --- a/include/irc.h +++ b/include/irc.h @@ -12,6 +12,7 @@ #ifndef __irc_h #define __irc_h #define IRCII_COMMENT "\002 Keep it to yourself!\002" +#define BUG_EMAIL "" #define FSET 1 diff --git a/source/commands.c b/source/commands.c index 32d3d7e..deadf2f 100644 --- a/source/commands.c +++ b/source/commands.c @@ -762,7 +762,7 @@ BuddahX, Hob, Lifendel, JondalaR, JVaughn, suicide, NovaLogic,\n\ Jordy, BigHead,Ananda, Hybrid, Reefa, BlackJac, GenX, MHacker,\n\ PSiLiCON, hop, Sheik, psykotyk, oweff, icetrey, Power, sideshow,\n\ Raistlin, Mustang, [Nuke], Rosmo, Sellfone, Drago and bark0de!\n\n\ -Mailing list is at majordomo@lists.bitchx.com\n"; +Mailing list is at \n"; gui_about_box(about_text); return; #else @@ -803,7 +803,7 @@ Mailing list is at majordomo@lists.bitchx.com\n"; put_it(" hop, Sheik, psykotyk, oweff, icetrey, Power, sideshow, Raistlin, "); put_it(" [Nuke], Rosmo and Bark0de! "); put_it(" A special thanks to ccm.net for co-locating BitchX.com "); - put_it(" Mailing list is at majordomo@lists.bitchx.com "); + put_it(" Mailing list is at "); put_it(empty_string); #else put_it(" ÜÜÜÜÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛßÛÛ°±² ²±ßܱ²Ü ²Þ"); @@ -825,7 +825,7 @@ Mailing list is at majordomo@lists.bitchx.com\n"; put_it("° Ananda, Hybrid, Reefa, BlackJac, GenX, MHacker, PSiLiCON, ²"); put_it("° hop, Sheik, psykotyk, oweff, icetrey, Power, sideshow, Raistlin, ²"); put_it("° Mustang, [Nuke], Rosmo, Sellfone, Drago and bark0de! ²"); - put_it("° Mailing list is at majordomo@lists.bitchx.com ²"); + put_it("° Mailing list is at ²"); put_it("ß²ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß"); put_it(empty_string); #endif diff --git a/source/irc.c b/source/irc.c index ea9273a..23307b8 100644 --- a/source/irc.c +++ b/source/irc.c @@ -491,7 +491,7 @@ extern char *sys_siglist[]; putlog(LOG_ALL, "*", "Error logged. %s at (%d) %s", cx_file, cx_line, cx_function?cx_function:empty_string); #endif printf("\n\r\n\rIRCII has been terminated by a [%s]\n\r", sys_siglist[unused]); - printf("Please inform panasync (edwards@bitchx.dimension6.com) of this\n\r"); + printf("Please email " BUG_EMAIL "\n\r"); printf("with as much detail as possible about what you were doing when it happened.\n\r"); printf("Please include the version of IRCII (%s) and type of system in the report.\n\r", irc_version); fflush(stdout); diff --git a/source/ircaux.c b/source/ircaux.c index c13eb07..6c19363 100644 --- a/source/ircaux.c +++ b/source/ircaux.c @@ -1326,7 +1326,7 @@ void BX_ircpanic (char *format, ...) } yell("An unrecoverable logic error has occured."); - yell("Please email %s giving me the following message", "edwards@bitchx.dimension6.com" ); + yell("Please email " BUG_EMAIL " and include the following message:"); yell("Panic: [%s:%s %s]", irc_version, buffer, cx_function?cx_function:empty_string); dump_call_stack(); @@ -2963,9 +2963,9 @@ size_t BX_mangle_line (char *incoming, int how, size_t how_much) output = strip_ansi(incoming); strip_ansi_never_xlate = 0; /* XXXXX */ if (strlcpy(incoming, output, how_much) > how_much) - say("Mangle_line truncating results. #1 -- " - "Email jnelson@acronet.net [%d] [%d]", - strlen(buffer), how_much); + say("Mangle_line truncating results (%d > %d) - " + "please email " BUG_EMAIL, + strlen(output), how_much); new_free(&output); }