User Tools

Site Tools


otros

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
otros [2017/07/29 21:47] rlunarootros [2022/12/02 22:02] (current) – external edit 127.0.0.1
Line 35: Line 35:
  
 La lista contiene 25.952 entradas. La lista contiene 25.952 entradas.
-====== Filter unrelevant email messages ====== 
- 
-If you are using [[http://www.oracle.com/technetwork/java/javamail/index.html|javamail]],  
-specifically in the context of reading an inbox, probably  
-you have came across of the problem of filtering by the subject those email messages  
-that are not relevant (like delivery reports, delayed mail messages and so on). I've  
-compiled some of these along my work and I put here, for the sake of those who might need them. 
- 
-They are collected in four languages: spanish, portuguese, turkish, english and server specific 
-(delayed mail). Here they are: 
- 
-<code java> 
-        // spanish 
- out = out && !subject.matches( "(?i)^entregado\\:.*" ); 
- out = out && !subject.matches( "(?i)^leer\\:.*" ); 
- out = out && !subject.matches( "(?i)^le.do\\:.*" ); 
- out = out && !subject.matches( "(?i)^no le.do\\:.*" ); 
- out = out && !subject.matches( "(?i)^respuesta autom.tica de fuera de la oficina\\:.*" ); 
- out = out && !subject.matches( "(?i)^respuesta de estoy ausente\\:.*" ); 
-        // portuguese, brazilian portuguese 
- out = out && !subject.matches( "(?i)^lida\\: .*" ); 
- out = out && !subject.matches( "(?i)^Resposta autom.*tica de aus.*ncia tempor.*ria.*" ); 
- out = out && !subject.matches( "(?i)^Lido\\:.*" ); 
- out = out && !subject.matches( "(?i)^Letto\\:.*" ); 
- out = out && !subject.matches( "(?i)^Não lido\\:.*" ); 
-        // english 
- out = out && !subject.matches( "(?i)^read\\: .*" ); 
- out = out && !subject.matches( "(?i)^automatic reply\\:.*" ); 
- out = out && !subject.matches( "(?i)^auto\\: .* is out of the office.*" ); 
- out = out && !subject.matches( "(?i)^out of office autoreply\\: .*" ); 
-        // turkish 
- out = out && !subject.matches( "(?i)^okundu\\:.*" ); 
- out = out && !subject.matches( "(?i)^teslim edildi\\:.*" ); 
-        // mail server specific 
- out = out && !subject.matches( "(?i)^Delayed Mail \\(still being retried\\).*" ); 
- out = out && !subject.matches( "(?i)^undelivered mail returned to sender.*" ); 
- out = out && !subject.matches( "(?i)^Undeliverable\\:.*" ); 
-</code> 
  
 ====== Relación entre extensiones de archivo y content_type ====== ====== Relación entre extensiones de archivo y content_type ======
Line 144: Line 106:
  
  
-====== Como conseguir que en una caja de texto no funcione "pegar" ====== 
- 
-Comprobado que en firefox y en IE funciona. De esta forma evitaremos que hagan un "copiar" en los cuadros de entrada de contraseñas o donde queremos una confirmación de lo que se teclea. Por ejemplo, este caso es de un portal inmobiliario, para evitar que hagan un "pegar" con la dirección de correo electrónico. 
- 
- 
-<code html> 
-     <input style="width:420px" type="text" id="emailConf" name="emailConf" size="35" maxlength="60" value="" onpaste="return false" autocomplete="off" /> 
-</code> 
  
 ====== Viewer of smart info ====== ====== Viewer of smart info ======
Line 165: Line 119:
 http://josep-portella.com/es/escritos/desmitificando-los-numeros-del-dni/ http://josep-portella.com/es/escritos/desmitificando-los-numeros-del-dni/
  
-====== A good Speech Synthesizer ======  +====== Códigos de estado http ======
- +
-http://mary.dfki.de:59125/ +
  
-~~DISQUS~~+https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml
otros.1501357629.txt.gz · Last modified: 2022/12/02 22:02 (external edit)