您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

SNFMilterConfig.hpp 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. // \file SNFMilterConfig.hpp
  2. //
  3. // Copyright (C) 2011 ARM Research Labs, LLC.
  4. // See www.armresearch.com for the copyright terms.
  5. //
  6. // This file defines the SNFMilterConfig interface.
  7. //
  8. // $Id$
  9. //
  10. ///////////////////////////////////////////////////////////////////////////////////////////////////
  11. #ifndef SNFMilterConfighpp_included
  12. #define SNFMilterConfighpp_included
  13. #include <string>
  14. #include "UtilityConfig.hpp"
  15. #include "PostfixIntegrate.hpp"
  16. /// Class to manage the SNFMilter configuration.
  17. //
  18. // This class creates/maintains the sniffer configuration file, and
  19. // integrates/unintegrates with MTAs.
  20. //
  21. //////////////////////////////////////////////////////////////////////////////////////////////////////////
  22. class SNFMilterConfig : public UtilityConfig {
  23. public:
  24. /// Command specified.
  25. enum CommandEnum {
  26. SetupRepairCommand, ///< Setup or repair the configuration.
  27. UpdateCredentialsCommand, ///< Update the credentials.
  28. IntegrateWithPostfixCommand, ///< Integrate with postfix.
  29. IntegrateWithSendmailCommand, ///< Integrate with sendmail.
  30. IntegrateWithNoneCommand, ///< Unintegrate with all supported MTAs.
  31. StartSnifferCommand, ///< Start the Sniffer.
  32. StopSnifferCommand, ///< Stop the Sniffer.
  33. NoCommand, ///< No command specified.
  34. UnknownCommand ///< Unknown.
  35. };
  36. /// Display usage.
  37. //
  38. // \param[in] Version is the SNFMilter version.
  39. //
  40. void DisplayHelp(std::string Version);
  41. /// Get the command-line input parameters for SNFMilter.
  42. //
  43. // \param[in] argc is the number of parameters.
  44. //
  45. // \param[in] argv is the parameters.
  46. //
  47. // \returns true if all the required command line parameters are
  48. // present and there are no unknown command-line parameters, false
  49. // otherwise.
  50. //
  51. bool GetCommandLineInput(int argc, char* argv[]);
  52. /// Execute the command specified by the command-line parameters.
  53. //
  54. void ExecuteCommand(void);
  55. /// Save the state of all files that might be changed, except the
  56. /// config file.
  57. //
  58. void SaveFileState(void); // OBSOLETE.
  59. /// Execute the command to integrate/unintegrate with the MTAs.
  60. void DoIntegrationCommand();
  61. private:
  62. /// Load the socket info (file name) from the <platform> section
  63. /// of the loaded config file.
  64. void LoadSocketInfo();
  65. /// Setup/repair the directory containing the milter socket.
  66. //
  67. // This method ensures that the directore to contain the milter
  68. // socket exists and has the correct owner and permissions.
  69. void SetupRepairSocketDir();
  70. PostfixIntegrate Postfix; ///< Postfix integration object.
  71. /// Unintegrate with MTAs.
  72. //
  73. // Unintegrate with all MTAs except the specified MTA.
  74. //
  75. // \param[in] Except is the MTA to not integrate with. The
  76. // acceptable values are:
  77. //
  78. // <ol>
  79. // <li> "postfix" </li>
  80. // <li> "" </li>
  81. // </ol>
  82. //
  83. // The default value is "", which specifies unintegration with all
  84. // MTAs.
  85. //
  86. void UnintegrateWithAllExcept(std::string Except = "");
  87. CommandEnum Command; ///< Specified command.
  88. static const std::string DefaultConfigFile; ///< Default config file.
  89. static const std::string SampleConfigFile; ///< Sample config file.
  90. static const std::string SampleIdentityFile; ///< Sample identity file.
  91. static const std::string ApplicationName; ///< Application name.
  92. std::string SocketFileName;
  93. };
  94. #endif