Beispiel #1
0
        public void StartAgent(string[] args)
        {
            if (m_agent != null)
            {
                return;
            }

            string configFile = args.GetRequiredValue(0);
            m_agent = SmtpAgentFactory.Create(configFile);
        }
Beispiel #2
0
        public void StartAgent(string[] args)
        {
            if (m_agent != null)
            {
                return;
            }

            string configFile = args.GetRequiredValue(0);

            m_agent = SmtpAgentFactory.Create(configFile);
        }
Beispiel #3
0
 public void StopAgent(string[] args)
 {
     m_agent = null;
 }
Beispiel #4
0
 internal AgentDiagnostics(SmtpAgent agent)
 {
     m_agent = agent;
     m_logger = Log.For(this);
 }
Beispiel #5
0
 public void StopAgent(string[] args)
 {
     m_agent = null;
 }
Beispiel #6
0
 internal AgentDiagnostics(SmtpAgent agent)
 {
     m_agent  = agent;
     m_logger = Log.For(this);
 }