Commit 9f93efeb by juan

MEjora en caso de false dest

1 parent ce8b606d
...@@ -169,6 +169,12 @@ def clean(): ...@@ -169,6 +169,12 @@ def clean():
threading.Timer(clean_timer, clean).start() threading.Timer(clean_timer, clean).start()
@app.route('/345f/reboot', methods = ['POST'])
def quiter():
id_query = request.values['id']
id_query == "cdsvr4t3hgvbrt9uihjvwn cndasj4745650943589vnefr"
return "true"
# Inicio del servicio # Inicio del servicio
if __name__ == "__main__": if __name__ == "__main__":
# Genero llaves # Genero llaves
......
...@@ -13,10 +13,13 @@ import re ...@@ -13,10 +13,13 @@ import re
def filtrar_no_ascii(texto): def filtrar_no_ascii(texto):
# Usar una expresión regular para encontrar todos los caracteres que no son ASCII # Usar una expresión regular para encontrar todos los caracteres que no son ASCII
texto = str(texto).replace(" ", "") texto2 = str(texto).replace(" ", "")
texto = str(texto).replace("\n", "") texto2 = str(texto2).replace("\n", "")
texto = str(texto).replace("\t", "") texto2 = str(texto2).replace("\t", "")
return re.sub(r'[^\x00-\x7F]', '', texto) texto2 = re.sub(r'[^\x00-\x7F]', '', texto2)
if texto2 in ["false","False",False]:
texto2 = texto
return texto2
# Ejemplo de uso # Ejemplo de uso
#texto_original = "Correo desde un usuario con caracteres especiales: é, ñ #texto_original = "Correo desde un usuario con caracteres especiales: é, ñ
...@@ -185,12 +188,15 @@ class Mail(ServiceBase): ...@@ -185,12 +188,15 @@ class Mail(ServiceBase):
#for destino in msg['To'].split(","): #for destino in msg['To'].split(","):
# Msg = msg.copy() # Msg = msg.copy()
# Msg["To"] = Cr.ValidarCorreo(destino) # Msg["To"] = Cr.ValidarCorreo(destino)
print(info)
self.Envio(msg,info,stadomail) self.Envio(msg,info,stadomail)
#self.Envio(msg,info,stadomail) #self.Envio(msg,info,stadomail)
else: else:
succ[file] = False succ[file] = False
except Exception as E: except Exception as E:
print(f"ROMPIO ALGO EN EL ENVIO: {E}") print(f"ROMPIO ALGO EN EL ENVIO: {E}")
#print("msg",msg)
print("data",data)
#tenemos q filtrar from #tenemos q filtrar from
stadomail.MailRompedor.append(msg['From']) stadomail.MailRompedor.append(msg['From'])
succ[file] = False succ[file] = False
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!