Search in sources :

Example 6 with ImapStore

use of com.fsck.k9.mail.store.imap.ImapStore in project k-9 by k9mail.

the class SmtpTransport method decodeUri.

/**
     * Decodes a SmtpTransport URI.
     *
     * NOTE: In contrast to ImapStore and Pop3Store, the authType is appended at the end!
     *
     * <p>Possible forms:</p>
     * <pre>
     * smtp://user:password:auth@server:port ConnectionSecurity.NONE
     * smtp+tls+://user:password:auth@server:port ConnectionSecurity.STARTTLS_REQUIRED
     * smtp+ssl+://user:password:auth@server:port ConnectionSecurity.SSL_TLS_REQUIRED
     * </pre>
     */
public static ServerSettings decodeUri(String uri) {
    String host;
    int port;
    ConnectionSecurity connectionSecurity;
    AuthType authType = null;
    String username = null;
    String password = null;
    String clientCertificateAlias = null;
    URI smtpUri;
    try {
        smtpUri = new URI(uri);
    } catch (URISyntaxException use) {
        throw new IllegalArgumentException("Invalid SmtpTransport URI", use);
    }
    String scheme = smtpUri.getScheme();
    /*
         * Currently available schemes are:
         * smtp
         * smtp+tls+
         * smtp+ssl+
         *
         * The following are obsolete schemes that may be found in pre-existing
         * settings from earlier versions or that may be found when imported. We
         * continue to recognize them and re-map them appropriately:
         * smtp+tls
         * smtp+ssl
         */
    if (scheme.equals("smtp")) {
        connectionSecurity = ConnectionSecurity.NONE;
        port = ServerSettings.Type.SMTP.defaultPort;
    } else if (scheme.startsWith("smtp+tls")) {
        connectionSecurity = ConnectionSecurity.STARTTLS_REQUIRED;
        port = ServerSettings.Type.SMTP.defaultPort;
    } else if (scheme.startsWith("smtp+ssl")) {
        connectionSecurity = ConnectionSecurity.SSL_TLS_REQUIRED;
        port = ServerSettings.Type.SMTP.defaultTlsPort;
    } else {
        throw new IllegalArgumentException("Unsupported protocol (" + scheme + ")");
    }
    host = smtpUri.getHost();
    if (smtpUri.getPort() != -1) {
        port = smtpUri.getPort();
    }
    if (smtpUri.getUserInfo() != null) {
        String[] userInfoParts = smtpUri.getUserInfo().split(":");
        if (userInfoParts.length == 1) {
            authType = AuthType.PLAIN;
            username = decodeUtf8(userInfoParts[0]);
        } else if (userInfoParts.length == 2) {
            authType = AuthType.PLAIN;
            username = decodeUtf8(userInfoParts[0]);
            password = decodeUtf8(userInfoParts[1]);
        } else if (userInfoParts.length == 3) {
            // NOTE: In SmtpTransport URIs, the authType comes last!
            authType = AuthType.valueOf(userInfoParts[2]);
            username = decodeUtf8(userInfoParts[0]);
            if (authType == AuthType.EXTERNAL) {
                clientCertificateAlias = decodeUtf8(userInfoParts[1]);
            } else {
                password = decodeUtf8(userInfoParts[1]);
            }
        }
    }
    return new ServerSettings(ServerSettings.Type.SMTP, host, port, connectionSecurity, authType, username, password, clientCertificateAlias);
}
Also used : ConnectionSecurity(com.fsck.k9.mail.ConnectionSecurity) ServerSettings(com.fsck.k9.mail.ServerSettings) AuthType(com.fsck.k9.mail.AuthType) URISyntaxException(java.net.URISyntaxException) URI(java.net.URI)

Example 7 with ImapStore

use of com.fsck.k9.mail.store.imap.ImapStore in project k-9 by k9mail.

the class SmtpTransport method createUri.

/**
     * Creates a SmtpTransport URI with the supplied settings.
     *
     * @param server
     *         The {@link ServerSettings} object that holds the server settings.
     *
     * @return A SmtpTransport URI that holds the same information as the {@code server} parameter.
     *
     * @see com.fsck.k9.mail.store.StoreConfig#getTransportUri()
     * @see SmtpTransport#decodeUri(String)
     */
public static String createUri(ServerSettings server) {
    String userEnc = (server.username != null) ? encodeUtf8(server.username) : "";
    String passwordEnc = (server.password != null) ? encodeUtf8(server.password) : "";
    String clientCertificateAliasEnc = (server.clientCertificateAlias != null) ? encodeUtf8(server.clientCertificateAlias) : "";
    String scheme;
    switch(server.connectionSecurity) {
        case SSL_TLS_REQUIRED:
            scheme = "smtp+ssl+";
            break;
        case STARTTLS_REQUIRED:
            scheme = "smtp+tls+";
            break;
        default:
        case NONE:
            scheme = "smtp";
            break;
    }
    String userInfo;
    AuthType authType = server.authenticationType;
    // NOTE: authType is append at last item, in contrast to ImapStore and Pop3Store!
    if (authType != null) {
        if (AuthType.EXTERNAL == authType) {
            userInfo = userEnc + ":" + clientCertificateAliasEnc + ":" + authType.name();
        } else {
            userInfo = userEnc + ":" + passwordEnc + ":" + authType.name();
        }
    } else {
        userInfo = userEnc + ":" + passwordEnc;
    }
    try {
        return new URI(scheme, userInfo, server.host, server.port, null, null, null).toString();
    } catch (URISyntaxException e) {
        throw new IllegalArgumentException("Can't create SmtpTransport URI", e);
    }
}
Also used : AuthType(com.fsck.k9.mail.AuthType) URISyntaxException(java.net.URISyntaxException) URI(java.net.URI)

Example 8 with ImapStore

use of com.fsck.k9.mail.store.imap.ImapStore in project k-9 by k9mail.

the class ImapFolderTest method fetch_withNullMessageListArgument_shouldDoNothing.

@Test
public void fetch_withNullMessageListArgument_shouldDoNothing() throws Exception {
    ImapFolder folder = createFolder("Folder");
    FetchProfile fetchProfile = createFetchProfile();
    folder.fetch(null, fetchProfile, null);
    verifyNoMoreInteractions(imapStore);
}
Also used : FetchProfile(com.fsck.k9.mail.FetchProfile) Test(org.junit.Test)

Example 9 with ImapStore

use of com.fsck.k9.mail.store.imap.ImapStore in project k-9 by k9mail.

the class ImapStoreTest method setUp.

@Before
public void setUp() throws Exception {
    storeConfig = createStoreConfig();
    TrustedSocketFactory trustedSocketFactory = mock(TrustedSocketFactory.class);
    ConnectivityManager connectivityManager = mock(ConnectivityManager.class);
    OAuth2TokenProvider oauth2TokenProvider = mock(OAuth2TokenProvider.class);
    imapStore = new TestImapStore(storeConfig, trustedSocketFactory, connectivityManager, oauth2TokenProvider);
}
Also used : TrustedSocketFactory(com.fsck.k9.mail.ssl.TrustedSocketFactory) ConnectivityManager(android.net.ConnectivityManager) OAuth2TokenProvider(com.fsck.k9.mail.oauth.OAuth2TokenProvider) Before(org.junit.Before)

Aggregations

AuthType (com.fsck.k9.mail.AuthType)4 URI (java.net.URI)4 URISyntaxException (java.net.URISyntaxException)4 ConnectivityManager (android.net.ConnectivityManager)2 ConnectionSecurity (com.fsck.k9.mail.ConnectionSecurity)2 FetchProfile (com.fsck.k9.mail.FetchProfile)2 OAuth2TokenProvider (com.fsck.k9.mail.oauth.OAuth2TokenProvider)2 Before (org.junit.Before)2 Test (org.junit.Test)2 MessagingException (com.fsck.k9.mail.MessagingException)1 PushReceiver (com.fsck.k9.mail.PushReceiver)1 ServerSettings (com.fsck.k9.mail.ServerSettings)1 Store (com.fsck.k9.mail.Store)1 DefaultTrustedSocketFactory (com.fsck.k9.mail.ssl.DefaultTrustedSocketFactory)1 TrustedSocketFactory (com.fsck.k9.mail.ssl.TrustedSocketFactory)1 ImapStore (com.fsck.k9.mail.store.imap.ImapStore)1 Pop3Store (com.fsck.k9.mail.store.pop3.Pop3Store)1 WebDavStore (com.fsck.k9.mail.store.webdav.WebDavStore)1