mailfilter  0.8.9
mailfilter.hh
Go to the documentation of this file.
1 // mailfilter.hh - source file for the mailfilter program
2 // Copyright (c) 2000 - 2012 Andreas Bauer <baueran@gmail.com>
3 //
4 // This program is free software; you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation; either version 2 of the License, or
7 // (at your option) any later version.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
17 // USA.
18 
19 #ifndef MAILFILTER_HH
20 #define MAILFILTER_HH
21 
22 #include <iostream>
23 
24 #ifdef HAVE_CONFIG_H
25 #include "config.h"
26 #endif
27 
28 using namespace std;
29 
30 // Mailfilter's command line options and arguments.
31 
32 #define VALUE_HELP 1
33 #define VALUE_VERBOSE 2
34 #define VALUE_MAILFILTERRC 3
35 #define VALUE_LOGFILE 4
36 #define VALUE_VERSION 5
37 #define VALUE_TEST 6
38 #define VALUE_RETURN 7
39 #define VALUE_TIMESTAMP 8
40 #define VALUE_SKIP_SSL_VERIFY 9
41 
42 #define ERROR_MSG(msg) \
43  cerr << PACKAGE_NAME \
44  << ": Error: " \
45  << msg \
46  << endl
47 
48 #endif