Warming up Domain and IPs for Gmail

  • Thread starter jungleegorilla
  • Start date
jungleegorilla

jungleegorilla

Verified
  • #1
can u suggest me warmup plans to warmup my ip and domain sucessfully......i want to send 100k mails a day,



Help needed
 
I

inselboy

Verified
  • #2
Option 1:
You can place a daily cronjob and use pmta reload every day to change the values and raise it every day a little bit.
Option 2:
Do it in your mail software and take a look at my picture.

#!/bin/bash
#
#nano /etc/pmta/mywarmup.sh
#chmod +x /etc/pmta/mywarmup.sh
#
#run:
#
#/usr/bin/sh /etc/pmta/mywarmup.sh
#
echo "IP Warm UP"
#
set +e
#
#
# cron 30 days warm-up
#
#
#
sed "s/^ max-msg-rate 3500\\/h #cron warm-up/ max-msg-rate 100000\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 2500\\/h #cron warm-up/ max-msg-rate 3500\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 1800\\/h #cron warm-up/ max-msg-rate 2500\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 1350\\/h #cron warm-up/ max-msg-rate 1800\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 1100\\/h #cron warm-up/ max-msg-rate 1350\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 880\\/h #cron warm-up/ max-msg-rate 1100\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 700\\/h #cron warm-up/ max-msg-rate 880\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 580\\/h #cron warm-up/ max-msg-rate 700\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 450\\/h #cron warm-up/ max-msg-rate 580\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 360\\/h #cron warm-up/ max-msg-rate 450\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 280\\/h #cron warm-up/ max-msg-rate 360\\/h #cron warm-up/g" -i /etc/pmta/config
#
sed "s/^ max-msg-rate 210\\/h #cron warm-up/ max-msg-rate 280\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 160\\/h #cron warm-up/ max-msg-rate 210\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 120\\/h #cron warm-up/ max-msg-rate 160\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 90\\/h #cron warm-up/ max-msg-rate 120\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 65\\/h #cron warm-up/ max-msg-rate 90\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 50\\/h #cron warm-up/ max-msg-rate 65\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 40\\/h #cron warm-up/ max-msg-rate 50\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 30\\/h #cron warm-up/ max-msg-rate 40\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 25\\/h #cron warm-up/ max-msg-rate 30\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 20\\/h #cron warm-up/ max-msg-rate 25\\/h #cron warm-up/g" -i /etc/pmta/config
#
sed "s/^ max-msg-rate 15\\/h #cron warm-up/ max-msg-rate 20\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 10\\/h #cron warm-up/ max-msg-rate 15\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 8\\/h #cron warm-up/ max-msg-rate 10\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 6\\/h #cron warm-up/ max-msg-rate 8\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 5\\/h #cron warm-up/ max-msg-rate 6\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 4\\/h #cron warm-up/ max-msg-rate 5\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 3\\/h #cron warm-up/ max-msg-rate 4\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 2\\/h #cron warm-up/ max-msg-rate 3\\/h #cron warm-up/g" -i /etc/pmta/config
sed "s/^ max-msg-rate 1\\/h #cron warm-up/ max-msg-rate 2\\/h #cron warm-up/g" -i /etc/pmta/config
#
#
#
#config reload
sudo pmta reload
#
#
set -e
#
/bin/echo DONE
exit 0
 

Attachments

  • Screen-Shot-2021-01-30-at-6.23.46-PM-580x805.png
    Screen-Shot-2021-01-30-at-6.23.46-PM-580x805.png
    166.8 KB · Views: 8
jungleegorilla

jungleegorilla

Verified
  • #3
with 1 domain how many ips do u recommend for sucessful warmup
 
jungleegorilla

jungleegorilla

Verified
  • #5
I am using between 3-5.
whenever i am start sending emails,gmail is flagging my email as spam and with domain error,can u suggest me best practice for warming up my doamin and IP
 
W

wildermann

Premium
Verified
  • #6
whenever i am start sending emails,gmail is flagging my email as spam and with domain error,can u suggest me best practice for warming up my doamin and IP
Use services like instantly.ai
If the mails are going spam in gmail, it will automatically marked as non spam.
That can help. Otherwise try a different hosting provider. Unfortunately its very hard to find good IPs.
Most IPs that I am using are blacklisted and I have to write to the support so that they assign new ones to me.
 
  • Like
Reactions: mizvow78
W

wildermann

Premium
Verified
  • #7
whenever i am start sending emails,gmail is flagging my email as spam and with domain error,can u suggest me best practice for warming up my doamin and IP
Gmail is hard to get inbox. It is even possible that your Mail will be flagged as potentially phishing even after inboxing.
I am not really sending to Gmail Accounts a lot.
100k a day is a lot. Very difficult.

I would recommend buying gmail accounts and proxies and using them to spam.
One Gmail Account can send about 50 Mails per day. So you have to invest quite a lot. Or lower your expectations.
 
  • Like
Reactions: mizvow78
W

wildermann

Premium
Verified
  • #8
Otherwise you can create a fake SaaS-Website and add it to different SaaS Promotion websites like g2.com
Afterwards register your Account to all email marketing websites and transactional websites that you can find and use them for sending.
 
  • Like
Reactions: mizvow78
M

mizvow78

  • #9
hey @wildermann how you check ips when you get them from providers ? + can you give some good providers that you recommand ? what you recommand for an isp for a beginner ?
 
W

wildermann

Premium
Verified
  • #10
hey @wildermann how you check ips when you get them from providers ? + can you give some good providers that you recommand ? what you recommand for an isp for a beginner ?
For blacklist.
Please, Login or Register to view URLs content!

For reputation.
Please, Login or Register to view URLs content!

Depends.
Please, Login or Register to view URLs content!

Most of the IPs are blacklisted but you can fill a delisting form and in 2 days the IPs should be clean.
3 IPs each server
 
  • Love
Reactions: mizvow78
M

mizvow78

  • #11
For blacklist.
Please, Login or Register to view URLs content!

For reputation.
Please, Login or Register to view URLs content!

Depends.
Please, Login or Register to view URLs content!

Most of the IPs are blacklisted but you can fill a delisting form and in 2 days the IPs should be clean.
3 IPs each server
thanks a lot wildermann :) for delisting you mean i contact mxtoolbox to delist my ip ?

+ can you recommand me what to start with (gmail or hotmail, yahoo, or even cables like free.fr ..) ?
 
W

wildermann

Premium
Verified
  • #12
thanks a lot wildermann :) for delisting you mean i contact mxtoolbox to delist my ip ?

+ can you recommand me what to start with (gmail or hotmail, yahoo, or even cables like free.fr ..) ?
No.
On barracuda, spamhaus and other blacklists.
mxtoolbox is just for checking
 
  • Like
Reactions: mizvow78
Top