Changeset 3320081
- Timestamp:
- 06/30/2025 01:34:45 PM (6 months ago)
- Location:
- email-verify
- Files:
-
- 4 added
- 5 deleted
- 10 edited
- 1 copied
-
assets/banner-1544x500.png (modified) (previous)
-
assets/banner-772x250.png (modified) (previous)
-
assets/banner.png (deleted)
-
assets/icon-128x128.png (modified) (previous)
-
assets/icon-256x256.png (modified) (previous)
-
assets/icon.png (deleted)
-
assets/screenshot-1.png (deleted)
-
tags/1.1.6 (copied) (copied from email-verify/trunk)
-
tags/1.1.6/README.md (deleted)
-
tags/1.1.6/classes/emailverify.class.php (modified) (8 diffs)
-
tags/1.1.6/classes/smtp-validate-email.php (modified) (2 diffs)
-
tags/1.1.6/email-verify.php (modified) (2 diffs)
-
tags/1.1.6/package.json (added)
-
tags/1.1.6/readme.txt (added)
-
trunk/README.md (deleted)
-
trunk/classes/emailverify.class.php (modified) (8 diffs)
-
trunk/classes/smtp-validate-email.php (modified) (2 diffs)
-
trunk/email-verify.php (modified) (2 diffs)
-
trunk/package.json (added)
-
trunk/readme.txt (added)
Legend:
- Unmodified
- Added
- Removed
-
email-verify/tags/1.1.6/classes/emailverify.class.php
r2329308 r3320081 20 20 add_action( 'admin_menu', array( &$this, 'menu' ) ); 21 21 add_action( 'admin_init', array( &$this, 'register_settings' ) ); 22 23 22 } 24 23 … … 45 44 } 46 45 } 47 48 46 } 49 47 … … 69 67 register_setting( 'email-verify', 'email_verify_safelist', array( &$this, 'validate_textarea' ) ); 70 68 register_setting( 'email-verify', 'email_verify_safelist_emails', array( &$this, 'validate_textarea' ) ); 71 72 69 } 73 70 … … 158 155 159 156 return true; 160 161 157 } 162 158 … … 176 172 $domains = explode( "\n", $raw ); 177 173 return $domains; 178 179 174 } 180 175 … … 193 188 194 189 return $valid; 195 196 190 } 197 191 … … 200 194 201 195 include $this->plugin_path . '/views/settings.php'; 202 203 196 } 204 197 … … 233 226 return $input; 234 227 } 235 236 228 } -
email-verify/tags/1.1.6/classes/smtp-validate-email.php
r2138216 r3320081 359 359 360 360 return $this->get_results(); 361 362 361 } 363 362 … … 823 822 $i = -1; 824 823 foreach ( $output as $line ) { 825 $i++;824 ++$i; 826 825 if ( preg_match( "/^$hostname\tMX preference = ([0-9]+), mail exchanger = (.+)$/i", $line, $parts ) ) { 827 826 $mxweights[ $i ] = trim( $parts[1] ); -
email-verify/tags/1.1.6/email-verify.php
r2329342 r3320081 3 3 Plugin Name: Email Verify 4 4 Description: Verifies your Users email addresses and blocks them from register to your site. 5 Version: 1.1. 55 Version: 1.1.6 6 6 Author: EverPress 7 7 Author URI: https://about.me/xaver … … 11 11 12 12 13 define( 'EMAILVERIFY_VERSION', '1.1. 5' );13 define( 'EMAILVERIFY_VERSION', '1.1.6' ); 14 14 define( 'EMAILVERIFY_FILE', __FILE__ ); 15 15 16 require_once dirname( __FILE__ ). '/classes/emailverify.class.php';16 require_once __DIR__ . '/classes/emailverify.class.php'; 17 17 new EmailVerify(); -
email-verify/trunk/classes/emailverify.class.php
r2329308 r3320081 20 20 add_action( 'admin_menu', array( &$this, 'menu' ) ); 21 21 add_action( 'admin_init', array( &$this, 'register_settings' ) ); 22 23 22 } 24 23 … … 45 44 } 46 45 } 47 48 46 } 49 47 … … 69 67 register_setting( 'email-verify', 'email_verify_safelist', array( &$this, 'validate_textarea' ) ); 70 68 register_setting( 'email-verify', 'email_verify_safelist_emails', array( &$this, 'validate_textarea' ) ); 71 72 69 } 73 70 … … 158 155 159 156 return true; 160 161 157 } 162 158 … … 176 172 $domains = explode( "\n", $raw ); 177 173 return $domains; 178 179 174 } 180 175 … … 193 188 194 189 return $valid; 195 196 190 } 197 191 … … 200 194 201 195 include $this->plugin_path . '/views/settings.php'; 202 203 196 } 204 197 … … 233 226 return $input; 234 227 } 235 236 228 } -
email-verify/trunk/classes/smtp-validate-email.php
r2138216 r3320081 359 359 360 360 return $this->get_results(); 361 362 361 } 363 362 … … 823 822 $i = -1; 824 823 foreach ( $output as $line ) { 825 $i++;824 ++$i; 826 825 if ( preg_match( "/^$hostname\tMX preference = ([0-9]+), mail exchanger = (.+)$/i", $line, $parts ) ) { 827 826 $mxweights[ $i ] = trim( $parts[1] ); -
email-verify/trunk/email-verify.php
r2329342 r3320081 3 3 Plugin Name: Email Verify 4 4 Description: Verifies your Users email addresses and blocks them from register to your site. 5 Version: 1.1. 55 Version: 1.1.6 6 6 Author: EverPress 7 7 Author URI: https://about.me/xaver … … 11 11 12 12 13 define( 'EMAILVERIFY_VERSION', '1.1. 5' );13 define( 'EMAILVERIFY_VERSION', '1.1.6' ); 14 14 define( 'EMAILVERIFY_FILE', __FILE__ ); 15 15 16 require_once dirname( __FILE__ ). '/classes/emailverify.class.php';16 require_once __DIR__ . '/classes/emailverify.class.php'; 17 17 new EmailVerify();
Note: See TracChangeset
for help on using the changeset viewer.