Forum: validace emailu

k8o

Forum: validace emailu
« kdy: 16. 01. 2019, 19:35:10 »
Bug: forum neumožňuje použít e-mail na doméně .technology.


Prc

Re:Forum: validace emailu
« Odpověď #1 kdy: 16. 01. 2019, 19:53:29 »
Jestli myslíš tu zbytečnou blbinu, co vyplňuješ v anonymním příspěvku, tak tu nikdo nevidí, takže šetři síly a vyplň tam třeba a@b.com.

k8o

Re:Forum: validace emailu
« Odpověď #2 kdy: 16. 01. 2019, 20:06:59 »
Dobře.

Vilith

  • *****
  • 662
    • Zobrazit profil
Re:Forum: validace emailu
« Odpověď #3 kdy: 16. 01. 2019, 21:31:27 »
Chtelo by to update SMF na minimalne verzi SMF 2.0.12

! Fixed an issue where SMF doesn't recognize new domain names and considers these as invalid

https://download.simplemachines.org/index.php?thanks;filename=smf_2-0-15_changelog.txt
« Poslední změna: 16. 01. 2019, 21:32:58 od Vilith »

admin supl

Re:Forum: validace emailu
« Odpověď #4 kdy: 16. 01. 2019, 21:43:08 »
Kód: [Vybrat]
// ==UserScript==
// @name        automail
// @include     https://forum.root.cz/index.php?action=post*
// @version     1
// @grant       none
// ==/UserScript==

var a = document.querySelector("input[name=email]");
if(a.value.length==0){
  a.value=raso();
   
}


function raso(){
return ch(2,8)+"@"+ch(3,6)+".cz";}
 function c(){
    return String.fromCharCode(Math.random()*(122-97)+97);
  }

function ch(a,b) {
  b-=Math.random()*a;
  var s=c();
  while(b>0){
    s+=c();
    b-=1;
   
  }
  return s;
                 }


Neni zač