emailrelay/src/main/configuration.h
Graeme Walker aa8ca77702 v1.6
2007-08-27 12:00:00 +00:00

221 lines
6.2 KiB
C++

//
// Copyright (C) 2001-2007 Graeme Walker <graeme_walker@users.sourceforge.net>
//
// 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
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// ===
///
/// \file configuration.h
///
#ifndef G_MAIN_CONFIGURATION_H
#define G_MAIN_CONFIGURATION_H
#include "gdef.h"
#include "gsmtp.h"
#include "gpath.h"
#include "gstrings.h"
#include <string>
/// \namespace Main
namespace Main
{
class Configuration ;
class CommandLine ;
}
/// \class Main::Configuration
/// An interface for returning application configuration
/// information. This implementation is minimaly dependent on the
/// command line in order to simplify moving to the windows registry
/// (for example) in the future.
/// \see CommandLine
///
class Main::Configuration
{
public:
explicit Configuration( const CommandLine & cl ) ;
///< Constructor. The reference is kept.
std::string str( const std::string & line_prefix = std::string() ,
const std::string & eol = std::string("\n") ) const ;
///< Reports the configuration in a multi-line
///< string.
unsigned int port() const ;
///< Returns the main listening port number.
G::Strings listeningInterfaces() const ;
///< Returns the listening interface(s).
///< Returns a single empty string if no
///< special interfaces are defined.
std::string firstListeningInterface() const ;
///< A convenience method returning the first listeningInterface().
std::string clientInterface() const ;
///< Returns the sending interface.
bool closeStderr() const ;
///< Returns true if stderr should be closed.
bool immediate() const ;
///< Returns true if proxying.
bool log() const ;
///< Returns true if doing logging.
bool verbose() const ;
///< Returns true if doing verbose logging.
bool debug() const ;
///< Returns true if doing debug-level logging.
bool useSyslog() const ;
///< Returns true if generating syslog events.
bool logTimestamp() const ;
///< Returns true if logging output should be timestamped.
bool daemon() const ;
///< Returns true if running as a daemon.
bool doForwarding() const ;
///< Returns true if running as a client.
bool doServing() const ;
///< Returns true if running as a server (SMTP, POP, admin or COM).
bool doSmtp() const ;
///< Returns true if listening for smtp connections.
bool doPop() const ;
///< Returns true if listening for pop connections.
bool popByName() const ;
///< Returns true if the pop spool directory is
///< modified according to the client name.
bool popNoDelete() const ;
///< Returns true if pop deletion is to be disabled.
bool doAdmin() const ;
///< Returns true if listening for admin connections.
unsigned int adminPort() const ;
///< Returns the admin port number.
unsigned int popPort() const ;
///< Returns the pop port number.
bool allowRemoteClients() const ;
///< Returns true if allowing remote clients to connect.
G::Path spoolDir() const ;
///< Returns the spool directory.
std::string serverAddress() const ;
///< Returns the downstream server's address string.
bool usePidFile() const ;
///< Returns true if writing a pid file.
std::string pidFile() const ;
///< Returns the pid file's path.
bool useFilter() const ;
///< Returns true if pre-processing.
std::string filter() const ;
///< Returns the path to a server-side pre-processor.
std::string clientFilter() const ;
///< Returns the path to a client-side pre-processor.
unsigned int filterTimeout() const ;
///< Returns the timeout for executing an ansynchronous
///< filter() or clientFilter() program.
unsigned int icon() const ;
///< Returns the icon selector (win32).
bool hidden() const ;
///< Returns true if the main window is hidden (win32).
unsigned int responseTimeout() const ;
///< Returns the client-side protocol timeout value.
unsigned int connectionTimeout() const ;
///< Returns the client-side connection timeout value.
unsigned int promptTimeout() const ;
///< Returns the timeout for getting a prompt from the SMTP server.
std::string clientSecretsFile() const ;
///< Returns the client-side autentication secrets (password) file.
///< Returns the empty string if none.
std::string serverSecretsFile() const ;
///< Returns the server-side autentication secrets (password) file.
///< Returns the empty string if none.
std::string popSecretsFile() const ;
///< Returns the pop-server autentication secrets (password) file.
///< Returns the empty string if not defined.
std::string fqdn() const ;
///< Returns the fully-qualified-domain-name override.
std::string nobody() const ;
///< Returns the name of an unprivileged user. This is only
///< used if running with a real user-id of root.
std::string verifier() const ;
///< Returns the path of an external address verifier program.
bool doPolling() const ;
///< Returns true if doing client polling.
unsigned int pollingTimeout() const ;
///< Returns the polling timeout.
bool withTerminate() const ;
///< Returns true if the admin interface should support the
///< terminate command.
std::string scannerAddress() const ;
///< Returns the address of a scanner process.
unsigned int scannerConnectionTimeout() const ;
///< Returns a timeout for connecting to the scanner process.
unsigned int scannerResponseTimeout() const ;
///< Returns a timeout for talking to the scanner process.
bool anonymous() const ;
///< Returns true if the server protocol should be
///< slightly more anonymous.
private:
const CommandLine & m_cl ;
private:
static std::string yn( bool ) ;
static std::string any( const std::string & ) ;
std::string na() const ;
std::string na( const std::string & ) const ;
} ;
#endif