[SCRIPT] MASS Self-Hosted Email Accounts Creation - Make 1000s Email IDs within a minute

Can it be made that the names($prefix = "zz";) could be spinned? If a spintax could be added like {zz|re|bg|jkf|ty|kl|hg}, it would be awesome. Can the OP modify the code to that effect?
 
looking for the scripts to validate bulk email addresses and save the good email in a separate file.

Can be done but it will take more time and I really don't have much time free these days. I will look into this if I get time.

You say what????? Catchall is just the best way. It does not mess up!

Depends on your tools. Catch-all works for most cases but not all. (-:

AWESOME IDEA!
Hope it will work,
Thank you very much, appreciated!

Welcome.

Anyone wanting to create catchall can use this tutorial to set up catchall for particular domains using gmail: http://dbpmarketing.com/senuke/solutions/how-to-setup-a-catch-all-email-using-google-apps/

Thanks for contributing to the thread.

Can it be made that the names($prefix = "zz";) could be spinned? If a spintax could be added like {zz|re|bg|jkf|ty|kl|hg}, it would be awesome. Can the OP modify the code to that effect?

Sure I can. (-: I will add the spinner to the code before going to bed.

works fine! :)
Thanks!
Welcome.
 
Can be done but it will take more time and I really don't have much time free these days. I will look into this if I get time.



Depends on your tools. Catch-all works for most cases but not all. (-:



Welcome.



Thanks for contributing to the thread.



Sure I can. (-: I will add the spinner to the code before going to bed.


Welcome.


Thanks! Will be waiting for the {|} spintax version. :)
 
Sorry for being late. I forgot about updating the code with spintax support. Here it is-

PHP:
<?php 

set_time_limit(0); 

// cPanel info 
$cpuser = 'cpaneluser'; // cPanel username 
$cppass = 'cpanelpass'; // cPanel password 
$cpdomain = 'domain.com'; // cPanel domain or IP 
$cpskin = 'x3';  // cPanel skin. Mostly x or x2. 
// Read here to know how to check cPanel skin - [url]http://www.zubrag.com/articles/determine-cpanel-skin.php[/url] 

$epass = 'emailpassy'; // email password 
$edomain = 'emaildomain.com'; // email domain (usually same as cPanel domain above) 
$equota = 50; // amount of space in megabytes 

// Email format - {prefix}{number}@{domain.tld} 
$prefix = "{aa|bb|cc{1|2|3}|dd}";  // Spintax supported.
$start = "1"; 
$end = "100"; 
$separator = ":"; // The script will output in format emailid{separator}password. So if you want emailid:pass then enter ":" separator. 

for($i=$start;$i<=$end;$i++) { 
    $euser =  spin($prefix) . $i;     
    $f = fopen ("http://$cpuser:$cppass@$cpdomain:2082/frontend/$cpskin/mail/doaddpop.html?email=$euser&domain=$edomain&password=$epass&quota=$equota", "r"); 
      if (!$f) { 
        $msg = 'Cannot create email account. Possible reasons: "fopen" function allowed on your server, PHP is running in SAFE mode'; 
        break; 
      } 
      echo $euser . "@" . $edomain . $separator . $epass . "<br />"; 
} 

function spin($s){
	preg_match('#\{(.+?)\}#is',$s,$m);
	if(empty($m)) return $s;

	$t = $m[1];

	if(strpos($t,'{')!==false){
		$t = substr($t, strrpos($t,'{') + 1);
	}

	$parts = explode("|", $t);
	$s = preg_replace("+\{".preg_quote($t)."\}+is", $parts[array_rand($parts)], $s, 1);

	return spin($s);
}

?>
 
Nice script. I have used similar in the past to create an email service.
 
You're lucky redstones a nice guy, that's quite a rude way of asking


Manners are free so use them

Dude, I never meant to cause any offense... I am the type who appreciate every little effort that someone puts into doing things. So please, don't insult me!

Its a pity how folks try to portray themselves as paragon of virtues... Redstone himself didn't take offense how much more a bystander.... the impudence! :rolleyes:
 
Does anyone know if I can get away with catch all email with UD or do I need actual accounts?

Just wanted to say I like how you started the post with "dude" and finished with "impudence" nice vocabulary range :) no offence...
Dude, I never meant to cause any offense... I am the type who appreciate every little effort that someone puts into doing things. So please, don't insult me!

Its a pity how folks try to portray themselves as paragon of virtues... Redstone himself didn't take offense how much more a bystander.... the impudence! :rolleyes:
 
Back
Top