Checking email

awzse00

Client
Joined
Mar 16, 2013
Messages
238
Reaction score
36
Points
28
Can anybody tell me a good solution on how to make zenno verify the email everytime ? Sometimes it's logges in some times it doesn't, and i have a pretty high quality template that i need to run, with paying proxies 1 by 1, so discarding them because zenno can't login correctly to the email it's pretty expensive. The email that i'm using is privateemail and it's a paid service, and besides that its works ok 7 times/10.
 

zortexx

Client
Joined
Sep 19, 2011
Messages
2,520
Reaction score
1,227
Points
113

awzse00

Client
Joined
Mar 16, 2013
Messages
238
Reaction score
36
Points
28
I mean that i register on a website, they send me a confirmation link, that zenno has to get from e-mail and confirm the accout, now sometimes it manages to connect to the email to get the link, and sometimes it doesn't, especially in ProjectMaker i encouter the problem most often, i have to close/open zenno in order to make it work again, to connect to the email to get the link
 

zortexx

Client
Joined
Sep 19, 2011
Messages
2,520
Reaction score
1,227
Points
113
I mean that i register on a website, they send me a confirmation link, that zenno has to get from e-mail and confirm the accout, now sometimes it manages to connect to the email to get the link, and sometimes it doesn't, especially in ProjectMaker i encouter the problem most often, i have to close/open zenno in order to make it work again, to connect to the email to get the link
Did you use automatic settings or manual?
Usually I use mail with web interface and do receive mail in browser. It works perfectly.
 
  • Thank you
Reactions: awzse00

ssXXXss

Client
Joined
Dec 23, 2014
Messages
7,374
Reaction score
2,043
Points
113
use MailKit
 
  • Thank you
Reactions: orka13 and awzse00

awzse00

Client
Joined
Mar 16, 2013
Messages
238
Reaction score
36
Points
28
There's no need, i think you are talking about https://github.com/jstedfast/MailKit, this solution that i have right now is very good and cheap on the domain part, the only problem is getting that email everytime.
 

awzse00

Client
Joined
Mar 16, 2013
Messages
238
Reaction score
36
Points
28
Did you use automatic settings or manual?
Usually I use mail with web interface and do receive mail in browser. It works perfectly.
I'm connecting via imap and parse the first 20 emails in my inbox by username and domain.
 

ssXXXss

Client
Joined
Dec 23, 2014
Messages
7,374
Reaction score
2,043
Points
113

ssXXXss

Client
Joined
Dec 23, 2014
Messages
7,374
Reaction score
2,043
Points
113
MailKit receives letters from the first received in the soap, so you do not see your letter, you have to take from the end
 

ssXXXss

Client
Joined
Dec 23, 2014
Messages
7,374
Reaction score
2,043
Points
113
C#:
public class MailExt
    {
        public static bool DownloadMessages(IZennoPosterProjectModel project, string server, int port, string login, string password, int count)
        {
            using (var client = new ImapClient())
            {
                client.Connect(server, port, SecureSocketOptions.SslOnConnect);
                client.Authenticate(login, password);
               
                var inbox = client.Inbox;
                inbox.Open(FolderAccess.ReadOnly);
               
                for(int i = inbox.Count - 1; i >= inbox.Count - count; i--)
                {
                    var message = inbox.GetMessage (i);
                    project.Lists["SourceList"].Add(message.Subject);
                }
               
                client.Disconnect(true);
            }
            return true;
        }
    }
C#:
var server = project.Variables["Server"].Value;
var login = project.Variables["Login"].Value;
var password = project.Variables["Password"].Value;
return MailExt.DownloadMessages(project, server, 993, login, password, 20);
 

awzse00

Client
Joined
Mar 16, 2013
Messages
238
Reaction score
36
Points
28
C#:
public class MailExt
    {
        public static bool DownloadMessages(IZennoPosterProjectModel project, string server, int port, string login, string password, int count)
        {
            using (var client = new ImapClient())
            {
                client.Connect(server, port, SecureSocketOptions.SslOnConnect);
                client.Authenticate(login, password);
              
                var inbox = client.Inbox;
                inbox.Open(FolderAccess.ReadOnly);
              
                for(int i = inbox.Count - 1; i >= inbox.Count - count; i--)
                {
                    var message = inbox.GetMessage (i);
                    project.Lists["SourceList"].Add(message.Subject);
                }
              
                client.Disconnect(true);
            }
            return true;
        }
    }
C#:
var server = project.Variables["Server"].Value;
var login = project.Variables["Login"].Value;
var password = project.Variables["Password"].Value;
return MailExt.DownloadMessages(project, server, 993, login, password, 20);
thank you for the time and effort, i will test it out and see how it works, maybe in c# works better. again, thank you for your time and effort.
 

ssXXXss

Client
Joined
Dec 23, 2014
Messages
7,374
Reaction score
2,043
Points
113
MailKit proxy supports socks
 
Last edited:

Users Who Are Viewing This Thread (Total: 1, Members: 0, Guests: 1)