public void Start() { if (_autoreplyService == null) { _autoreplyService = new AutoreplyService(); _autoreplyService.RegisterAddressParser(new CommentAddressParser()); _autoreplyService.RegisterAddressParser(new CommunityAddressParser()); _autoreplyService.RegisterAddressParser(new FileAddressParser()); _autoreplyService.RegisterAddressParser(new ProjectAddressParser()); _autoreplyService.Start(); } }