Loading README.md +3 −3 Original line number Diff line number Diff line Loading @@ -9,12 +9,12 @@ K-9 Mail is an open-source email client for Android. K-9 Mail can be downloaded from a couple of sources: - [Google Play](https://play.google.com/store/apps/details?id=com.fsck.k9) - [F-Droid](https://f-droid.org/repository/browse/?fdid=com.fsck.k9) - [Google Play](https://play.google.com/store/apps/details?id=io.eelo.mail) - [F-Droid](https://f-droid.org/repository/browse/?fdid=io.eelo.mail) - [Github Releases](https://github.com/k9mail/k-9/releases) - [Amazon Appstore for Android](http://www.amazon.com/dp/B004JK61K0) You might also be interested in becoming a [tester](https://play.google.com/apps/testing/com.fsck.k9) to get an early look at new versions. You might also be interested in becoming a [tester](https://play.google.com/apps/testing/io.eelo.mail) to get an early look at new versions. ## Release Notes Loading k9mail-library/src/androidTest/java/com/fsck/k9/mail/PgpMimeMessageTest.java→k9mail-library/src/androidTest/java/io/eelo/mail/mail/PgpMimeMessageTest.java +3 −3 Original line number Diff line number Diff line package com.fsck.k9.mail; package io.eelo.mail.mail; import java.io.ByteArrayInputStream; Loading @@ -9,8 +9,8 @@ import java.io.InputStream; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import com.fsck.k9.mail.internet.BinaryTempFileBody; import com.fsck.k9.mail.internet.MimeMessage; import io.eelo.mail.mail.internet.BinaryTempFileBody; import io.eelo.mail.mail.internet.MimeMessage; import org.junit.Test; import org.junit.runner.RunWith; import org.spongycastle.openpgp.PGPCompressedData; Loading k9mail-library/src/androidTest/java/com/fsck/k9/mail/ReconstructMessageTest.java→k9mail-library/src/androidTest/java/io/eelo/mail/mail/ReconstructMessageTest.java +3 −3 Original line number Diff line number Diff line package com.fsck.k9.mail; package io.eelo.mail.mail; import java.io.ByteArrayInputStream; Loading @@ -9,8 +9,8 @@ import java.io.InputStream; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import com.fsck.k9.mail.internet.BinaryTempFileBody; import com.fsck.k9.mail.internet.MimeMessage; import io.eelo.mail.mail.internet.BinaryTempFileBody; import io.eelo.mail.mail.internet.MimeMessage; import org.junit.Test; import org.junit.runner.RunWith; Loading k9mail-library/src/androidTest/java/com/fsck/k9/mail/ssl/TrustManagerFactoryTest.java→k9mail-library/src/androidTest/java/io/eelo/mail/mail/ssl/TrustManagerFactoryTest.java +2 −2 Original line number Diff line number Diff line package com.fsck.k9.mail.ssl; package io.eelo.mail.mail.ssl; import java.io.ByteArrayInputStream; import java.io.File; Loading @@ -24,7 +24,7 @@ import static junit.framework.Assert.assertTrue; */ @RunWith(AndroidJUnit4.class) public class TrustManagerFactoryTest { public static final String MATCHING_HOST = "k9.example.com"; public static final String MATCHING_HOST = "mail.example.com"; public static final String NOT_MATCHING_HOST = "bla.example.com"; public static final int PORT1 = 993; public static final int PORT2 = 465; Loading k9mail-library/src/main/AndroidManifest.xml +1 −1 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <manifest package="com.fsck.k9.mail" /> <manifest package="io.eelo.mail.mail" /> Loading
README.md +3 −3 Original line number Diff line number Diff line Loading @@ -9,12 +9,12 @@ K-9 Mail is an open-source email client for Android. K-9 Mail can be downloaded from a couple of sources: - [Google Play](https://play.google.com/store/apps/details?id=com.fsck.k9) - [F-Droid](https://f-droid.org/repository/browse/?fdid=com.fsck.k9) - [Google Play](https://play.google.com/store/apps/details?id=io.eelo.mail) - [F-Droid](https://f-droid.org/repository/browse/?fdid=io.eelo.mail) - [Github Releases](https://github.com/k9mail/k-9/releases) - [Amazon Appstore for Android](http://www.amazon.com/dp/B004JK61K0) You might also be interested in becoming a [tester](https://play.google.com/apps/testing/com.fsck.k9) to get an early look at new versions. You might also be interested in becoming a [tester](https://play.google.com/apps/testing/io.eelo.mail) to get an early look at new versions. ## Release Notes Loading
k9mail-library/src/androidTest/java/com/fsck/k9/mail/PgpMimeMessageTest.java→k9mail-library/src/androidTest/java/io/eelo/mail/mail/PgpMimeMessageTest.java +3 −3 Original line number Diff line number Diff line package com.fsck.k9.mail; package io.eelo.mail.mail; import java.io.ByteArrayInputStream; Loading @@ -9,8 +9,8 @@ import java.io.InputStream; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import com.fsck.k9.mail.internet.BinaryTempFileBody; import com.fsck.k9.mail.internet.MimeMessage; import io.eelo.mail.mail.internet.BinaryTempFileBody; import io.eelo.mail.mail.internet.MimeMessage; import org.junit.Test; import org.junit.runner.RunWith; import org.spongycastle.openpgp.PGPCompressedData; Loading
k9mail-library/src/androidTest/java/com/fsck/k9/mail/ReconstructMessageTest.java→k9mail-library/src/androidTest/java/io/eelo/mail/mail/ReconstructMessageTest.java +3 −3 Original line number Diff line number Diff line package com.fsck.k9.mail; package io.eelo.mail.mail; import java.io.ByteArrayInputStream; Loading @@ -9,8 +9,8 @@ import java.io.InputStream; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import com.fsck.k9.mail.internet.BinaryTempFileBody; import com.fsck.k9.mail.internet.MimeMessage; import io.eelo.mail.mail.internet.BinaryTempFileBody; import io.eelo.mail.mail.internet.MimeMessage; import org.junit.Test; import org.junit.runner.RunWith; Loading
k9mail-library/src/androidTest/java/com/fsck/k9/mail/ssl/TrustManagerFactoryTest.java→k9mail-library/src/androidTest/java/io/eelo/mail/mail/ssl/TrustManagerFactoryTest.java +2 −2 Original line number Diff line number Diff line package com.fsck.k9.mail.ssl; package io.eelo.mail.mail.ssl; import java.io.ByteArrayInputStream; import java.io.File; Loading @@ -24,7 +24,7 @@ import static junit.framework.Assert.assertTrue; */ @RunWith(AndroidJUnit4.class) public class TrustManagerFactoryTest { public static final String MATCHING_HOST = "k9.example.com"; public static final String MATCHING_HOST = "mail.example.com"; public static final String NOT_MATCHING_HOST = "bla.example.com"; public static final int PORT1 = 993; public static final int PORT2 = 465; Loading
k9mail-library/src/main/AndroidManifest.xml +1 −1 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <manifest package="com.fsck.k9.mail" /> <manifest package="io.eelo.mail.mail" />