Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[submodule "lib/vendor/swiftmailer"]
path = lib/vendor/swiftmailer
url = https://github.com/swiftmailer/swiftmailer.git
branch = 5.x
[submodule "lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine"]
path = lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine
url = https://github.com/LExpress/doctrine1.git
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ install:
- composer self-update

before_script:
# by default, --remote is not used on travis
- git submodule update --remote --force
- sh -c 'if [ $(php -r "echo PHP_MINOR_VERSION;") -le 4 ] && [ $(php -r "echo PHP_MAJOR_VERSION;") -le 5 ]; then echo "extension = apc.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;'
- composer install

Expand Down
2 changes: 1 addition & 1 deletion lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine
2 changes: 1 addition & 1 deletion lib/vendor/swiftmailer
Submodule swiftmailer updated 76 files
+12 −10 .travis.yml
+20 −0 CHANGES
+1 −1 LICENSE
+0 −1 README
+1 −1 VERSION
+5 −0 composer.json
+2 −2 doc/overview.rst
+2 −0 lib/classes/Swift/ByteStream/AbstractFilterableInputStream.php
+1 −3 lib/classes/Swift/ByteStream/ArrayByteStream.php
+3 −1 lib/classes/Swift/ByteStream/FileByteStream.php
+2 −2 lib/classes/Swift/CharacterReader/GenericFixedWidthReader.php
+2 −2 lib/classes/Swift/CharacterReader/UsAsciiReader.php
+1 −4 lib/classes/Swift/CharacterReader/Utf8Reader.php
+3 −11 lib/classes/Swift/CharacterStream/NgCharacterStream.php
+4 −4 lib/classes/Swift/DependencyContainer.php
+13 −2 lib/classes/Swift/Encoder/QpEncoder.php
+2 −2 lib/classes/Swift/FileSpool.php
+1 −4 lib/classes/Swift/KeyCache/DiskKeyCache.php
+1 −1 lib/classes/Swift/Mailer.php
+28 −2 lib/classes/Swift/MemorySpool.php
+2 −6 lib/classes/Swift/Mime/Attachment.php
+13 −2 lib/classes/Swift/Mime/ContentEncoder/QpContentEncoder.php
+1 −0 lib/classes/Swift/Mime/ContentEncoder/QpContentEncoderProxy.php
+4 −4 lib/classes/Swift/Mime/Grammar.php
+1 −3 lib/classes/Swift/Mime/Headers/ParameterizedHeader.php
+2 −4 lib/classes/Swift/Mime/MimePart.php
+1 −6 lib/classes/Swift/Mime/SimpleHeaderFactory.php
+8 −7 lib/classes/Swift/Mime/SimpleHeaderSet.php
+1 −1 lib/classes/Swift/Mime/SimpleMessage.php
+23 −47 lib/classes/Swift/Mime/SimpleMimeEntity.php
+2 −5 lib/classes/Swift/Plugins/DecoratorPlugin.php
+3 −15 lib/classes/Swift/Plugins/ReporterPlugin.php
+2 −2 lib/classes/Swift/Plugins/ThrottlerPlugin.php
+10 −14 lib/classes/Swift/Signers/DKIMSigner.php
+11 −11 lib/classes/Swift/Signers/DomainKeySigner.php
+9 −8 lib/classes/Swift/Signers/OpenDKIMSigner.php
+4 −5 lib/classes/Swift/Signers/SMimeSigner.php
+12 −6 lib/classes/Swift/Transport/AbstractSmtpTransport.php
+2 −2 lib/classes/Swift/Transport/Esmtp/Auth/NTLMAuthenticator.php
+1 −1 lib/classes/Swift/Transport/Esmtp/AuthHandler.php
+28 −1 lib/classes/Swift/Transport/EsmtpTransport.php
+7 −4 lib/classes/Swift/Transport/FailoverTransport.php
+18 −1 lib/classes/Swift/Transport/LoadBalancedTransport.php
+20 −2 lib/classes/Swift/Transport/MailTransport.php
+1 −0 lib/classes/Swift/Transport/SendmailTransport.php
+2 −2 lib/classes/Swift/Transport/SimpleMailInvoker.php
+5 −1 lib/classes/Swift/Transport/StreamBuffer.php
+1 −1 phpunit.xml.dist
+4 −0 tests/acceptance/Swift/Encoder/QpEncoderAcceptanceTest.php
+2 −0 tests/acceptance/Swift/Mime/ContentEncoder/NativeQpContentEncoderAcceptanceTest.php
+5 −2 tests/acceptance/Swift/Mime/ContentEncoder/QpContentEncoderAcceptanceTest.php
+12 −11 tests/acceptance/Swift/Mime/EmbeddedFileAcceptanceTest.php
+3 −3 tests/acceptance/Swift/Mime/SimpleMessageAcceptanceTest.php
+1 −1 tests/acceptance/Swift/Transport/StreamBuffer/BasicSocketAcceptanceTest.php
+3 −1 tests/acceptance/Swift/Transport/StreamBuffer/SocketTimeoutTest.php
+1 −1 tests/acceptance/Swift/Transport/StreamBuffer/SslSocketAcceptanceTest.php
+5 −3 tests/bootstrap.php
+2 −2 tests/bug/Swift/Bug274Test.php
+1 −1 tests/bug/Swift/Bug34Test.php
+2 −2 tests/bug/Swift/Bug38Test.php
+19 −0 tests/bug/Swift/BugFileByteStreamConsecutiveReadCallsTest.php
+0 −10 tests/fixtures/EsmtpTransportFixture.php
+2 −0 tests/smoke/Swift/Smoke/AttachmentSmokeTest.php
+2 −0 tests/smoke/Swift/Smoke/HtmlWithAttachmentSmokeTest.php
+2 −0 tests/smoke/Swift/Smoke/InternationalSmokeTest.php
+1 −3 tests/unit/Swift/ByteStream/ArrayByteStreamTest.php
+21 −0 tests/unit/Swift/Encoder/QpEncoderTest.php
+8 −1 tests/unit/Swift/Events/SimpleEventDispatcherTest.php
+0 −5 tests/unit/Swift/MailerTest.php
+4 −4 tests/unit/Swift/Mime/AbstractMimeEntityTest.php
+2 −2 tests/unit/Swift/Mime/ContentEncoder/PlainContentEncoderTest.php
+24 −2 tests/unit/Swift/Mime/ContentEncoder/QpContentEncoderTest.php
+3 −3 tests/unit/Swift/Plugins/AntiFloodPluginTest.php
+4 −1 tests/unit/Swift/Plugins/BandwidthMonitorPluginTest.php
+4 −6 tests/unit/Swift/Transport/EsmtpTransport/ExtensionSupportTest.php
+146 −5 tests/unit/Swift/Transport/MailTransportTest.php