2012-08-28 1 views
2

내 안드로이드 응용 프로그램은 JavaMail 라이브러리를 사용하여 첨부 파일과 함께 전자 메일을 보냅니다. Wifi 이상으로 애플리케이션이 잘 작동하지만 WiFi에서 연결을 끊고 3G을 켜면 메일을 보낼 수 없습니다. 메일 서버가 로컬 네트워크가 아닌 인터넷에 공개되어 있어도 메일 서버에 연결할 수없는 것 같습니다.와이파이에서 3G까지 다양한 SMTP 포트

3G에 연결할 때 SMTP 포트가 변경됩니까? 그렇다면 매우 이상합니다. 메일을 보내기위한 codesnippet은 아래

package Logic; 

public class SendMail extends javax.mail.Authenticator { 

    private String _user; 
    private String _pass; 

    private String[] _to; 
    private String _from; 

    private String _port; 
    private String _sport; 

    private String _host; 

    private String _subject; 
    private String _body; 

    private boolean _auth; 

    private boolean _debuggable; 

    private Multipart _multipart; 
    SharedPreferences sharedPrefs; 

    public SendMail() { 

     _user = ""; // username 
     _pass = ""; // password 
     _from = ""; // email sent from 
     _subject = ""; // email subject 
     _body = ""; // email body 

     _debuggable = false; // debug mode on or off - default off 
     _auth = true; // smtp authentication - default on 

     _multipart = new MimeMultipart(); 

     // There is something wrong with MailCap, javamail can not find a 
     // handler for the multipart/mixed part, so this bit needs to be added. 
     MailcapCommandMap mc = (MailcapCommandMap) CommandMap 
       .getDefaultCommandMap(); 
     mc.addMailcap("text/html;; x-java-content-handler=com.sun.mail.handlers.text_html"); 
     mc.addMailcap("text/xml;; x-java-content-handler=com.sun.mail.handlers.text_xml"); 
     mc.addMailcap("text/plain;; x-java-content-handler=com.sun.mail.handlers.text_plain"); 
     mc.addMailcap("multipart/*;; x-java-content-handler=com.sun.mail.handlers.multipart_mixed"); 
     mc.addMailcap("message/rfc822;; x-java-content-handler=com.sun.mail.handlers.message_rfc822"); 
     CommandMap.setDefaultCommandMap(mc); 



    } 

    public SendMail(Context c) { 
     this(); 

     sharedPrefs = PreferenceManager.getDefaultSharedPreferences(c); 
     _host = sharedPrefs.getString("host", null); 
     _port = sharedPrefs.getString("port", null); 
     _sport = sharedPrefs.getString("port", null); 
     _user = sharedPrefs.getString("mail", null); 
     _pass = sharedPrefs.getString("pw", null); 

    } 

    public boolean send() throws Exception { 
     Properties props = _setProperties(); 

     if (!_user.equals("") && !_pass.equals("") && _to.length > 0 
       && !_from.equals("") && !_subject.equals("") 
       && !_body.equals("")) { 

      Session session = Session.getInstance(props, 
        new GMailAuthenticator(_user, _pass)); 

      MimeMessage msg = new MimeMessage(session); 


      msg.setFrom(new InternetAddress(_from)); 

      InternetAddress[] addressTo = new InternetAddress[_to.length]; 
      for (int i = 0; i < _to.length; i++) { 
       addressTo[i] = new InternetAddress(_to[i]); 
      } 
      msg.setRecipients(MimeMessage.RecipientType.TO, addressTo); 

      msg.setSubject(_subject); 
      msg.setSentDate(new Date()); 

      // setup message body 
      BodyPart messageBodyPart = new MimeBodyPart(); 
      messageBodyPart.setText(_body); 
      _multipart.addBodyPart(messageBodyPart); 


      // Put parts in message 
      msg.setContent(_multipart); 

      // send email, henger noe her?! 
      Transport.send(msg); 

      return true; 
     } else { 
      return false; 
     } 
    } 

    public void addAttachment(String filename) throws Exception { 
     BodyPart messageBodyPart = new MimeBodyPart(); 
     DataSource source = new FileDataSource(filename); 
     messageBodyPart.setDataHandler(new DataHandler(source)); 
     messageBodyPart.setFileName(filename); 


     _multipart.addBodyPart(messageBodyPart); 
    } 

    class GMailAuthenticator extends Authenticator { 
     String user; 
     String pw; 

     public GMailAuthenticator(String username, String password) { 
      super(); 
      this.user = username; 
      this.pw = password; 
     } 

     public PasswordAuthentication getPasswordAuthentication() { 
      return new PasswordAuthentication(user, pw); 
     } 
    } 

    private Properties _setProperties() { 
     Properties props = new Properties(); 

     props.put("mail.smtp.host", _host); 
     props.put("mail.smtp.starttls.enable", "true"); 

     if (_debuggable) { 
      props.put("mail.debug", "true"); 
     } 

     if (_auth) { 
      props.put("mail.smtp.auth", "true"); 
     } 

     props.put("mail.smtp.port", _port); 
     props.put("mail.smtp.socketFactory.port", _sport); 
     props.put("mail.smtp.socketFactory.fallback", "true"); 

     return props; 
    } 

    public String getBody() { 
     return _body; 
    } 

    public void setBody(String _body) { 
     this._body = _body; 
    } 

    public void setTo(String[] toArr) { 
     this._to = toArr; 
    } 

    public void setFrom(String string) { 
     this._from = string; 
    } 

    public void setSubject(String string) { 
     this._subject = string; 
    } 
} 

예, 내가 대신 자신의 SMTP 서버를 사용하도록 SMTP 서버의 사용을 제한하고 강제로 내 매니페스트

<uses-permission android:name="android.permission.INTERNET"/> 
+0

문제에 대한 힌트를 줄 수있는 로그 추적이 있습니까? – fiddler

답변

1

일부 ISP에 올바른 권한을 지정한 당신의 개인적인.
pop.yourmailserver.com에서 메일을 받고 smtp.yourisp.com을 사용하여 메일을 보내십시오.

또는 3G에서 SMTP를 사용하여 메일을 보내는 것을 금지합니다.