summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2002-12-11 11:19:39 +0000
committerThomas Roessler <roessler@does-not-exist.org>2002-12-11 11:19:39 +0000
commit94e1c2811dec0a8cd3ba3f42a3731dcfb6ddf694 (patch)
tree07a7b9ec1efc6a22a27799783873c575feca0ac3
parentdaf6bc3849631d6ffdba52069ebc751f5e016e77 (diff)
Fix Mike's and my e-mail addresses in copyright lines.
-rw-r--r--addrbook.c2
-rw-r--r--alias.c8
-rw-r--r--attach.c4
-rw-r--r--attach.h2
-rw-r--r--browser.c2
-rw-r--r--browser.h2
-rw-r--r--buffy.c2
-rw-r--r--buffy.h2
-rw-r--r--charset.c2
-rw-r--r--charset.h2
-rw-r--r--commands.c2
-rw-r--r--complete.c2
-rw-r--r--compose.c2
-rw-r--r--copy.h2
-rw-r--r--crypt.c6
-rw-r--r--crypt.h6
-rw-r--r--curs_main.c2
-rw-r--r--date.c2
-rw-r--r--dotlock.c4
-rw-r--r--dotlock.h4
-rw-r--r--edit.c2
-rw-r--r--editmsg.c2
-rw-r--r--enter.c2
-rw-r--r--extlib.c2
-rw-r--r--flags.c2
-rw-r--r--from.c2
-rw-r--r--functions.h2
-rw-r--r--gnupgparse.c2
-rw-r--r--handler.c2
-rw-r--r--hash.c2
-rw-r--r--hash.h2
-rw-r--r--headers.c2
-rw-r--r--help.c2
-rw-r--r--history.c2
-rw-r--r--history.h2
-rw-r--r--imap/auth.c2
-rw-r--r--imap/command.c2
-rw-r--r--imap/imap.c2
-rw-r--r--imap/imap.h2
-rw-r--r--imap/util.c2
-rw-r--r--keymap.c2
-rw-r--r--keymap.h2
-rw-r--r--lib.c4
-rw-r--r--lib.h4
-rw-r--r--main.c4
-rw-r--r--makedoc.c2
-rw-r--r--mapping.h2
-rw-r--r--menu.c2
-rw-r--r--mh.c2
-rw-r--r--mime.h2
-rw-r--r--mkjtags.c2
-rw-r--r--mutt_curses.h2
-rw-r--r--mutt_menu.h2
-rw-r--r--mutt_regex.h2
-rw-r--r--mutt_socket.c2
-rw-r--r--muttlib.c4
-rw-r--r--mx.c2
-rw-r--r--mx.h2
-rw-r--r--pager.h2
-rw-r--r--parse.c2
-rw-r--r--pattern.c2
-rw-r--r--pgp.c6
-rw-r--r--pgp.h4
-rw-r--r--pgpinvoke.c2
-rw-r--r--pgpkey.c4
-rw-r--r--pgplib.c2
-rw-r--r--pgplib.h4
-rw-r--r--postpone.c2
-rw-r--r--protos.h2
-rw-r--r--query.c2
-rw-r--r--recvattach.c4
-rw-r--r--recvcmd.c2
-rw-r--r--remailer.c2
-rw-r--r--remailer.h2
-rw-r--r--resize.c2
-rw-r--r--rfc1524.c2
-rw-r--r--rfc1524.h2
-rw-r--r--rfc2047.c2
-rw-r--r--rfc2047.h2
-rw-r--r--rfc2231.c2
-rw-r--r--rfc2231.h2
-rw-r--r--rfc822.c4
-rw-r--r--rfc822.h2
-rw-r--r--score.c2
-rw-r--r--signal.c2
-rw-r--r--snprintf.c4
-rw-r--r--sort.c2
-rw-r--r--sort.h2
-rw-r--r--status.c2
-rw-r--r--system.c2
-rw-r--r--thread.c2
-rw-r--r--url.c2
92 files changed, 114 insertions, 114 deletions
diff --git a/addrbook.c b/addrbook.c
index 6a5036f5..157a6f69 100644
--- a/addrbook.c
+++ b/addrbook.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 1996-2000 Michael R. Elkins <me@cs.hmc.edu>
+ * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/alias.c b/alias.c
index 5e551918..6ccd7464 100644
--- a/alias.c
+++ b/alias.c
@@ -141,16 +141,16 @@ void mutt_expand_aliases_env (ENVELOPE *env)
/*
* if someone has an address like
- * From: Michael `/bin/rm -f ~` Elkins <me@cs.hmc.edu>
+ * From: Michael `/bin/rm -f ~` Elkins <me@mutt.org>
* and the user creates an alias for this, Mutt could wind up executing
* the backtics because it writes aliases like
- * alias me Michael `/bin/rm -f ~` Elkins <me@cs.hmc.edu>
+ * alias me Michael `/bin/rm -f ~` Elkins <me@mutt.org>
* To avoid this problem, use a backslash (\) to quote any backtics. We also
* need to quote backslashes as well, since you could defeat the above by
* doing
- * From: Michael \`/bin/rm -f ~\` Elkins <me@cs.hmc.edu>
+ * From: Michael \`/bin/rm -f ~\` Elkins <me@mutt.org>
* since that would get aliased as
- * alias me Michael \\`/bin/rm -f ~\\` Elkins <me@cs.hmc.edu>
+ * alias me Michael \\`/bin/rm -f ~\\` Elkins <me@mutt.org>
* which still gets evaluated because the double backslash is not a quote.
*
* Additionally, we need to quote ' and " characters - otherwise, mutt will
diff --git a/attach.c b/attach.c
index 171929a4..628eb9a4 100644
--- a/attach.c
+++ b/attach.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 1996-2000 Michael R. Elkins <me@cs.hmc.edu>
- * Copyright (C) 1999-2000 Thomas Roessler <roessler@guug.de>
+ * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
+ * Copyright (C) 1999-2000 Thomas Roessler <roessler@does-not-exist.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/attach.h b/attach.h
index 5b84ac0c..2147b744 100644
--- a/attach.h
+++ b/attach.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 1996-2000 Michael R. Elkins <me@cs.hmc.edu>
+ * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/browser.c b/browser.c
index 61fe713a..7a03c8b5 100644
--- a/browser.c
+++ b/browser.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 1996-2000 Michael R. Elkins <me@cs.hmc.edu>
+ * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/browser.h b/browser.h
index 4f2adda9..3da490ab 100644
--- a/browser.h
+++ b/browser.h
@@ -1,6 +1,6 @@
/* $Id$ */
/*
- * Copyright (C) 1996-2000 Michael R. Elkins <me@cs.hmc.edu>
+ * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/buffy.c b/buffy.c
index e0ef5d2f..4b33b2b2 100644
--- a/buffy.c
+++ b/buffy.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 1996-2000 Michael R. Elkins <me@cs.hmc.edu>
+ * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/buffy.h b/buffy.h
index adfc2695..e04e7c5b 100644
--- a/buffy.h
+++ b/buffy.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 1996-2000 Michael R. Elkins <me@cs.hmc.edu>
+ * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/charset.c b/charset.c
index 65afc9e3..19c3a2b5 100644
--- a/charset.c
+++ b/charset.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 1999-2000 Thomas Roessler <roessler@guug.de>
+ * Copyright (C) 1999-2000 Thomas Roessler <roessler@does-not-exist.org>
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General Public
diff --git a/charset.h b/charset.h
index 43f6f982..993f9973 100644
--- a/charset.h
+++ b/charset.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 1999-2000 Thomas Roessler <roessler@guug.de>
+ * Copyright (C) 1999-2000 Thomas Roessler <roessler@does-not-exist.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/commands.c b/commands.c
index 88cd38f2..e89c4f1e 100644
--- a/commands.c
+++ b/commands.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 1996-2000 Michael R. Elkins <me@cs.hmc.edu>
+ * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
* Copyright (C) 2000 Thomas Roessler <roessler@does-not-exist.org>
*
* This program is free software; you can redistribute it and/or modify
diff --git a/complete.c b/complete.c
index ea1184d9..b34bb075 100644
--- a/complete.c
+++ b/complete.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 1996-2000 Michael R. Elkins <me@cs.hmc.edu>
+ * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/compose.c b/compose.c
index 22881d0d..fe12d126 100644
--- a/compose.c
+++ b/compose.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 1996-2000 Michael R. Elkins <me@cs.hmc.edu>
+ * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/copy.h b/copy.h
index dfbd4376..2f8fc2c7 100644
--- a/copy.h
+++ b/copy.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 1996-2000 Michael R. Elkins <me@cs.hmc.edu>
+ * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/crypt.c b/crypt.c
index d08ee7a0..30e06ccf 100644
--- a/crypt.c
+++ b/crypt.c
@@ -1,7 +1,7 @@
/*
- * Copyright (C) 1996,1997 Michael R. Elkins <me@cs.hmc.edu>
- * Copyright (C) 1999-2000 Thomas Roessler <roessler@guug.de>
- * Copyright (C) 2001 Thomas Roessler <roessler@guug.de>
+ * Copyright (C) 1996,1997 Michael R. Elkins <me@mutt.org>
+ * Copyright (C) 1999-2000 Thomas Roessler <roessler@does-not-exist.org>
+ * Copyright (C) 2001 Thomas Roessler <roessler@does-not-exist.org>
* Oliver Ehli <elmy@acm.org>
*
* This program is free software; you can redistribute it and/or modify
diff --git a/crypt.h b/crypt.h
index 42427e6b..34d06be0 100644
--- a/crypt.h
+++ b/crypt.h
@@ -1,7 +1,7 @@
/*
- * Copyright (C) 1996,1997 Michael R. Elkins <me@cs.hmc.edu>
- * Copyright (C) 1999-2000 Thomas Roessler <roessler@guug.de>
- * Copyright (C) 2001 Thomas Roessler <roessler@guug.de>
+ * Copyright (C) 1996,1997 Michael R. Elkins <me@mutt.org>
+ * Copyright (C) 1999-2000 Thomas Roessler <roessler@does-not-exist.org>
+ * Copyright (C) 2001 Thomas Roessler <roessler@does-not-exist.org>
* Oliver Ehli <elmy@acm.org>
*
* This program is free software; you can redistribute it and/or modify
diff --git a/curs_main.c b/curs_main.c
index 08b9f30e..2f6198da 100644
--- a/curs_main.c
+++ b/curs_main.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 1996-2000 Michael R. Elkins <me@cs.hmc.edu>
+ * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/date.c b/date.c
index 91aa0df6..cc8e4e36 100644
--- a/date.c
+++ b/date.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 1996-2000 Michael R. Elkins <me@cs.hmc.edu>
+ * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/dotlock.c b/dotlock.c
index 560db7ff..eb799d59 100644
--- a/dotlock.c
+++ b/dotlock.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 1996-2000 Michael R. Elkins <me@cs.hmc.edu>
- * Copyright (C) 1998-2000 Thomas Roessler <roessler@guug.de>
+ * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
+ * Copyright (C) 1998-2000 Thomas Roessler <roessler@does-not-exist.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/dotlock.h b/dotlock.h
index d20cf597..dff6f61c 100644
--- a/dotlock.h
+++ b/dotlock.h
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 1996-2000 Michael R. Elkins <me@cs.hmc.edu>
- * Copyright (C) 1998-2000 Thomas Roessler <roessler@guug.de>
+ * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
+ * Copyright (C) 1998-2000 Thomas Roessler <roessler@does-not-exist.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/edit.c b/edit.c
index bbcc3e55..37684939 100644
--- a/edit.c
+++ b/edit.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 1996-2000 Michael R. Elkins <me@cs.hmc.edu>
+ * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/editmsg.c b/editmsg.c
index c105a48e..6369f0a9 100644
--- a/editmsg.c
+++ b/editmsg.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 1999-2000 Thomas Roessler <roessler@guug.de>
+ * Copyright (C) 1999-2000 Thomas Roessler <roessler@does-not-exist.org>
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General Public
diff --git a/enter.c b/enter.c
index a5bf5a9d..5b956bf1 100644
--- a/enter.c
+++ b/enter.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 1996-2000 Michael R. Elkins <me@cs.hmc.edu>
+ * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
* Copyright (C) 2000 Edmund Grimley Evans <edmundo@rano.org>
*
* This program is free software; you can redistribute it and/or modify
diff --git a/extlib.c b/extlib.c
index 74fb03b2..04692a9c 100644
--- a/extlib.c
+++ b/extlib.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 1999-2000 Thomas Roessler <roessler@guug.de>
+ * Copyright (C) 1999-2000 Thomas Roessler <roessler@does-not-exist.org>
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General Public
diff --git a/flags.c b/flags.c
index 9f51c6f4..9eedbea3 100644
--- a/flags.c
+++ b/flags.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 1996-2000 Michael R. Elkins <me@cs.h