public TwitterConfiguration()
 {
     InnerInputChannel = new Channel { Type = typeof(TwitterClientChannel) };
     InnerOutputChannel = new Channel { Type = typeof(TwitterClientChannel) };
     InnerContactsChannel = new Channel { Type = typeof(TwitterClientChannel) };
     InnerStatusUpdatesChannel = new Channel { Type = typeof(TwitterClientChannel) };
 }
Exemplo n.º 2
0
 public GMailConfiguration()
 {
     InnerInputChannel = new Channel { Type = typeof(Imap2ClientChannel), Hostname = "imap.gmail.com", Port = 993, IsSecured = true, MaxConcurrentConnections = 1 };
     InnerOutputChannel = new Channel { Type = typeof(SmtpClientChannel), Hostname = "smtp.gmail.com", Port = 465, IsSecured = true, MaxConcurrentConnections = 1 };
     InnerContactsChannel = new Channel { Type = typeof(GoogleContactsChannel) };
     InnerCalendarChannel = new Channel { Type = typeof(GoogleCalendarChannel) };
 }
 public FacebookConfiguration()
 {
     InnerInputChannel = new Channel { Type = typeof(FacebookClientChannel), Port = 80, IsSecured = false, MaxConcurrentConnections = 2 };
     InnerOutputChannel = new Channel { Type = typeof(FacebookClientChannel), Port = 80, IsSecured = false, MaxConcurrentConnections = 1 };
     InnerContactsChannel = new Channel { Type = typeof(FacebookClientChannel), Port = 80, IsSecured = false, MaxConcurrentConnections = 1 };
     InnerStatusUpdatesChannel = new Channel { Type = typeof(FacebookClientChannel), Port = 80, IsSecured = false, MaxConcurrentConnections = 1 };
 }
 public LinkedInConfiguration()
 {
     InnerInputChannel = new Channel { Type = typeof(LinkedInClientChannel) };
     InnerContactsChannel = new Channel { Type = typeof(LinkedInClientChannel) };
     InnerStatusUpdatesChannel = new Channel { Type = typeof(LinkedInClientChannel) };
 }
 public ExchangeConfiguration()
 {
     InnerInputChannel = new Channel { Type = typeof(ExchangeClientChannel), Port = 80, IsSecured = false, MaxConcurrentConnections = 2 };
     InnerOutputChannel = new Channel { Type = typeof(ExchangeClientChannel), Port = 80, IsSecured = false, MaxConcurrentConnections = 2 };
     InnerContactsChannel = new Channel { Type = typeof(ExchangeClientChannel), Port = 80, IsSecured = false, MaxConcurrentConnections = 2 };
 }
Exemplo n.º 6
0
 public YahooConfiguration()
 {
     InnerInputChannel = new Channel { Type = typeof(Imap2ClientChannel), Hostname = "imap-ssl.mail.yahoo.com", Port = 993, IsSecured = true, MaxConcurrentConnections = 1 };
     InnerOutputChannel = new Channel { Type = typeof(SmtpClientChannel), Hostname = "smtp.mail.yahoo.com", Port = 465, IsSecured = true, MaxConcurrentConnections = 1 };
 }
Exemplo n.º 7
0
 public AolConfiguration()
 {
     InnerInputChannel = new Channel { Type = typeof(Imap2ClientChannel), Hostname = "imap.aol.com", Port = 143, IsSecured = false, MaxConcurrentConnections = 1 };
     InnerOutputChannel = new Channel { Type = typeof(SmtpClientChannel), Hostname = "smtp.aol.com", Port = 587, IsSecured = false, MaxConcurrentConnections = 1 };
 }
Exemplo n.º 8
0
 public YammerConfiguration()
 {
     InnerInputChannel = new Channel { Type = typeof(YammerClientChannel) };
     InnerContactsChannel = new Channel { Type = typeof(YammerClientChannel) };
     InnerStatusUpdatesChannel = new Channel { Type = typeof(YammerClientChannel) };
 }
 public HotmailConfiguration()
 {
     InnerInputChannel = new Channel { Type = typeof(Pop3ClientChannel), Hostname = "pop3.live.com", Port = 995, IsSecured = true, MaxConcurrentConnections = 1 };
     InnerOutputChannel = new Channel { Type = typeof(SmtpClientChannel), Hostname = "smtp.live.com", Port = 25, IsSecured = false, MaxConcurrentConnections = 1 };
     //InnerContactsChannel = new Channel { Type = typeof(HotmailContactsChannel) };
 }