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

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

            string configFile = args.GetRequiredValue(0);

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