comparison src/configfile.h @ 357:b0ee77fa24d4 noffle

[svn] * src/post.c,src/configfile.c,src/configfile.h,docs/noffle.conf.5, noffle.conf.example,TODO: Added a config value to specify whether a Reply-To header should be appended to messages posted without it. Also made the new option show up in the noffle.conf manpage and the initial example configuration shipped with the package.
author bears
date Mon, 24 Mar 2003 23:32:48 +0000
parents 01755687c565
children 6cb66f5a0479
comparison
equal deleted inserted replaced
356:93e06e5ecb7a 357:b0ee77fa24d4
1 /* 1 /*
2 configfile.h 2 configfile.h
3 3
4 Common declarations and handling of the configuration file. 4 Common declarations and handling of the configuration file.
5 5
6 $Id: configfile.h 419 2003-01-10 23:11:43Z bears $ 6 $Id: configfile.h 495 2003-03-24 23:32:48Z bears $
7 */ 7 */
8 8
9 #ifndef CONFIGFILE_H 9 #ifndef CONFIGFILE_H
10 #define CONFIGFILE_H 10 #define CONFIGFILE_H
11 11
26 int Cfg_threadFollowTime( void ); 26 int Cfg_threadFollowTime( void );
27 int Cfg_connectTimeout( void ); 27 int Cfg_connectTimeout( void );
28 Bool Cfg_autoUnsubscribe( void ); 28 Bool Cfg_autoUnsubscribe( void );
29 Bool Cfg_autoSubscribe( void ); 29 Bool Cfg_autoSubscribe( void );
30 Bool Cfg_infoAlways( void ); 30 Bool Cfg_infoAlways( void );
31 Bool Cfg_appendReplyTo ( void );
31 32
32 Bool Cfg_replaceMsgId( void ); 33 Bool Cfg_replaceMsgId( void );
33 const char * Cfg_hostnameMsgId( void ); 34 const char * Cfg_hostnameMsgId( void );
34 Bool Cfg_postLocal( void ); 35 Bool Cfg_postLocal( void );
35 const char * Cfg_mailTo( void ); 36 const char * Cfg_mailTo( void );