comparison lib-src/cvtmail.c @ 101078:5f4e85fd7c0a

Comments (minor fixes of some header conventions).
author Glenn Morris <rgm@gnu.org>
date Sat, 10 Jan 2009 21:50:40 +0000
parents a9f7e446141d
children
comparison
equal deleted inserted replaced
101077:22a55aabcdba 101078:5f4e85fd7c0a
1 /* Copyright (C) 1985, 1994, 2001, 2002, 2003, 2004, 1 /* cvtmail.c --- convert Gosling Emacs mail directories into RMAIL format
2 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. 2
3 Copyright (C) 1985, 1994, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
4 2008, 2009 Free Software Foundation, Inc.
5
6 Author: Larry Kolodney
7 Created: 1985
3 8
4 This file is part of GNU Emacs. 9 This file is part of GNU Emacs.
5 10
6 GNU Emacs is free software: you can redistribute it and/or modify 11 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by 12 it under the terms of the GNU General Public License as published by
15 20
16 You should have received a copy of the GNU General Public License 21 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ 22 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
18 23
19 24
20 /* cvtmail: 25 /* Commentary:
21 * Program to convert oldstyle goslings emacs mail directories into 26
22 * gnu-rmail format. Program expects a directory called Messages to 27 Program to convert oldstyle goslings emacs mail directories into
23 * exist in your home directory, containing individual mail messages in 28 gnu-rmail format. Program expects a directory called Messages to
24 * separate files in the standard gosling emacs mail reader format. 29 exist in your home directory, containing individual mail messages in
25 * 30 separate files in the standard gosling emacs mail reader format.
26 * Program takes one argument: an output file. This file will contain 31
27 * all the messages in Messages directory, in berkeley mail format. 32 Program takes one argument: an output file. This file will contain
28 * If no output file is mentioned, messages are put in ~/OMAIL. 33 all the messages in Messages directory, in berkeley mail format.
29 * 34 If no output file is mentioned, messages are put in ~/OMAIL.
30 * In order to get rmail to read the messages, the resulting file must 35
31 * be mv'ed to ~/mbox, and then have rmail invoked on them. 36 In order to get rmail to read the messages, the resulting file must
32 * 37 be mv'ed to ~/mbox, and then have rmail invoked on them. */
33 * Author: Larry Kolodney, 1985
34 */
35 38
36 #ifdef HAVE_CONFIG_H 39 #ifdef HAVE_CONFIG_H
37 #include <config.h> 40 #include <config.h>
38 #endif 41 #endif
39 42