It seems that we need to configure the mailer to use self-signed certificates in a Symfony 1.4 project and no idea where to look at
Configuration right now:
mailer:
class: sfMailer
param:
delivery_strategy: realtime
delivery_address: user@mail.com
transport:
class: Swift_SmtpTransport
param:
host: x.x.x.x
port: 25
encryption: ~
username: user@mail.com
password: pass
I was looking at this question: PHP - Swiftmailer using STARTTLS and self signed certificates
But all examples are with Laravel and it seems very new so I'm not sure if Symfony 1.4 has all these features included.
I also looked at the mailer configuration but I didn't find anything of help there.
Any help on how to configure this without touching anything from vendor folder?
EDIT:
So this is the new configuration:
mailer:
class: sfMailer
param:
delivery_strategy: realtime
delivery_address: user@mail.com
transport:
class: Swift_SmtpTransport
param:
host: x.x.x.x
port: 25
encryption: ~
username: user@mail.com
password: pass
streamOptions:
ssl:
allow_self_signed: true
verify_peer: false
local_cert: "/etc/ssl/certificate.cer"
local_pk: "/etc/ssl/certificate.key"