sendmail() gives Network is unreachable error on one of my computers
    7 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Benjamin
 el 25 de Jul. de 2015
  
    
    
    
    
    Comentada: Benjamin
 el 3 de Ag. de 2015
            I have two PCs both with Matlab R2014a installed. The following code:
setpref('Internet','SMTP_Server','my_smtp');
setpref('Internet','E_mail','my_email@my_email.com');
sendmail({'my_email@my_email.com'},'My subject');
works on one of my PCs but on the other one it gives an error:
Error using sendmail (line 171)
Could not connect to SMTP host: my_smpt, port: 25;
Network is unreachable: connect
of couse with my real SMPT and email address inserted.
Any suggestions? The PCs are on the same network. One is 32 bit and one is 64 bit, though...
Thanks for any inputs :)
Ben
2 comentarios
  Walter Roberson
      
      
 el 25 de Jul. de 2015
				It could be differences in the way you set up your Windows Firewall.
Respuesta aceptada
  Udaya Mallampati
    
 el 27 de Jul. de 2015
        This error might be due to a Java Socket Exception, triggered by an interaction between Java 7 and an IPv4 connection. The Java Development Toolkit 7 (JDK) supports IPv6 on Windows machines. When you try to connect to an IPv4 address, JDK7 will use an IPv6 address that was mapped to an IPv4.
To remedy this issue, you would need to use a flag in the java run time. You can follow the below instructions for that:
- Create "java.opts" file in matlabroot\bin\arch folder.
- Write the following line in "java.opts" file:
     -Djava.net.preferIPv4Stack=true
- Restart MATLAB.
Más respuestas (0)
Ver también
Categorías
				Más información sobre Web Services en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


