POP Import Format?

Support / help / discussion forum for twitter bot
Post Reply
x360
Posts: 21
Joined: Fri Jun 17, 2022 5:32 am

POP Import Format?

Post by x360 »

I've been trying everything I can think of and have searched everything I can and I still can't figure out how to format my account imports so they can log into hotmail with pop3 when I'm trying to login to my Twitter accounts. If anyone knows can you please share? Thank you!
User avatar
martin@rootjazz
Site Admin
Posts: 34360
Joined: Fri Jan 25, 2013 10:06 pm
Location: The Funk
Contact:

Re: POP Import Format?

Post by martin@rootjazz »

My apologies, I assumed it was detailed in the app, but it's not!

Where are you trying to enter the POP DETAILS? The format may vary. If you are doing it via a CSV import, then it's a : separated

email:password:server:port:ssl
martin@hotmail.com:p455word1:pop.hotmail.com:995:true
If you are entering it to the (just added) POP TEXT FIELD in accounts details form, then it can take either : or ,
martin@hotmail.com:p455word1:pop.hotmail.com:995:true
martin@hotmail.com,p455word1,pop.hotmail.com,995,true


but let me know what and where you are trying to do it and I can confirm exactly


My apologies for the inconvenience. Next update will include the above changes
x360
Posts: 21
Joined: Fri Jun 17, 2022 5:32 am

Re: POP Import Format?

Post by x360 »

martin@rootjazz wrote: Tue Aug 02, 2022 1:27 am My apologies, I assumed it was detailed in the app, but it's not!

Where are you trying to enter the POP DETAILS? The format may vary. If you are doing it via a CSV import, then it's a : separated

email:password:server:port:ssl
martin@hotmail.com:p455word1:pop.hotmail.com:995:true
If you are entering it to the (just added) POP TEXT FIELD in accounts details form, then it can take either : or ,
martin@hotmail.com:p455word1:pop.hotmail.com:995:true
martin@hotmail.com,p455word1,pop.hotmail.com,995,true


but let me know what and where you are trying to do it and I can confirm exactly


My apologies for the inconvenience. Next update will include the above changes
I've been trying to do it with the custom import in twitterdub. What does the entire thing look like with twitter and pop all on the same line? I tried:

username,email,password,proxy,pop
twttr1,email1@hotmail.com,twtterpassword1,ip:port:username:password,outlook.office365.com,995,true
twttr2,email2@hotmail.com,twttrpassword2,ip:port:username:password,outlook.office365.com,995,true
...
twttr100,email100@hotmail.com,twttrpassword100,ip:port:username:password,outlook.office365.com,995,true

And

username,email,password,proxy,pop
twttr1,email1@hotmail.com,twttrpassword1,ip:port:username:password,email1@hotmail.com,emailpassword1,outlook.office365.com,995,true
twttr2,email2@hotmail.com,twttrpassword2,ip:port:username:password,email2@hotmail.com,emailpassword2,outlook.office365.com,995,true
...
twttr100,email100@hotmail.com,twttrpassword100,ip:port:username:password,email100@hotmail.com,emailpassword100,outlook.office365.com,995,true

assuming the email and email password are the same as twitter email and twitter password.

Neither of these got results
User avatar
martin@rootjazz
Site Admin
Posts: 34360
Joined: Fri Jan 25, 2013 10:06 pm
Location: The Funk
Contact:

Re: POP Import Format?

Post by martin@rootjazz »

ok custom import. My apologies the instructions are not clear. I will take a look at that and improve it to make it clear.

username,email,password,proxy,pop
So here, as it's a CSV import, the pop settings must be contained within a single CSV column, so the POP FORMAT is

Code: Select all

email:password:server:port:ssl
note the separator is : not ,

If you want the technicals, this is because we have

Code: Select all

username,email,password,proxy,pop
meaning
username csv[0]
email csv[1]
password csv[2]
proxy csv[3]
pop csv[4]

so if popsetting is , separator, the pop detail wouldn't be csv[3] but csv[4] [5] [7] [8] [8]


so:
twttr1,email1@hotmail.com,twttrpassword1,ip:port:username:password,email1@hotmail.com:emailpassword1:outlook.office365.com:995:true
twttr2,email2@hotmail.com,twttrpassword2,ip:port:username:password,email2@hotmail.com:emailpassword2:outlook.office365.com:995:true
so when we split on , separator

username csv[0] = twttr1
email csv[1] = email1@hotmail.com
password csv[2] = twttrpassword1
proxy csv[3] = ip:port:username:password
pop csv[4] = email1@hotmail.com:emailpassword1:outlook.office365.com:995:true


hopefully that makes some sense :-)
User avatar
martin@rootjazz
Site Admin
Posts: 34360
Joined: Fri Jan 25, 2013 10:06 pm
Location: The Funk
Contact:

Re: POP Import Format?

Post by martin@rootjazz »

updated the custom import page:
viewtopic.php?f=15&t=10730&p=68949#p68949
x360
Posts: 21
Joined: Fri Jun 17, 2022 5:32 am

Re: POP Import Format?

Post by x360 »


so when we split on , separator

username csv[0] = twttr1
email csv[1] = email1@hotmail.com
password csv[2] = twttrpassword1
proxy csv[3] = ip:port:username:password
pop csv[4] = email1@hotmail.com:emailpassword1:outlook.office365.com:995:true


hopefully that makes some sense :-)
You broke it down perfectly! Thank you!
User avatar
martin@rootjazz
Site Admin
Posts: 34360
Joined: Fri Jan 25, 2013 10:06 pm
Location: The Funk
Contact:

Re: POP Import Format?

Post by martin@rootjazz »

x360 wrote: Tue Aug 02, 2022 8:46 pm

so when we split on , separator

username csv[0] = twttr1
email csv[1] = email1@hotmail.com
password csv[2] = twttrpassword1
proxy csv[3] = ip:port:username:password
pop csv[4] = email1@hotmail.com:emailpassword1:outlook.office365.com:995:true


hopefully that makes some sense :-)
You broke it down perfectly! Thank you!
as per your DM, the file you sent works fine for me. I'll post an update later today. Just got some more updates to try and include in it before I do.
User avatar
martin@rootjazz
Site Admin
Posts: 34360
Joined: Fri Jan 25, 2013 10:06 pm
Location: The Funk
Contact:

Re: POP Import Format?

Post by martin@rootjazz »

https://rootjazz.com/twitterdub/updatetesting.html

Please try this for your import file



Regards,
Martin
Post Reply