Skip to content
#

smtp

Here are 944 public repositories matching this topic...

PHPMailer
PhilippGrashoff
PhilippGrashoff commented Jan 22, 2020

Hi there,
after spending quite some time figuring why Email sending with a certain smtp server does not work, I found its an SSL issue.

Most widely on the web the found solution is to unset some ssl checks:

$mail->SMTPOptions = array(
    'ssl' => array(
        'verify_peer' => false,
        'verify_peer_name' => false,
        'allow_self_signed' => true
    )
);

However

ringe
ringe commented Oct 30, 2019

The Status Checks explanation for missing DNSSEC is not clear enough on what the DNSKEY record should look like. I would like the DNSSEC explanation to display what the DNSKEY should look like, to copy and paste into the registrar's form.

We registered a Russian domain for a client at nic.ru who support DNSSEC, with a manual setup.

![Screenshot_2019-10-30 RU-CENTER](htt

meiamsome
meiamsome commented Mar 28, 2020

Context

When another mailserver attempts to send an email to the one set up with this docker compose set up over IPv6, the mail will be incorrectly processed by SPF protection.

Expected Behavior

The SPF check is run against the originating IPv6 address

Actual Behavior

The SPF check is run against the IPv4 gateway that docker is using to proxy the IPv6 connection (172.20.0.1 is th

mildsunrise
mildsunrise commented Mar 14, 2020

The smtps_port option was added in #2268 / #2269. However the option was not documented because use of STMPS was not encouraged, and STARTTLS was the way to go.

However RFC 8314 now recommends STMPS over STARTTLS (#2522). We should document:

  • that setting listen to the special port 465 creates an SMTPS server instead of a regular one.
  • that the above 'special port' can be changed
micw
micw commented Jan 27, 2020

With 1.8 we will have a fully working kubernetes based deployment of mailu and a helm chart. Helm 3 is out, so the helm chart can fully replace the current static k8s examples (static k8s files can be created with helm3 at client side without special requirements to the kubernetes cluster and even without running kubernetes).

I'd like to modify the documentation:

  • replace existing kubernetes
1.8
ladar
ladar commented Jul 18, 2019

@gabrielmongefranco thank you for contacting me. In terms of contributing, we could certainly use your skills. Several things spring to mind.

We need to automate the process of building binary releases for the various popular distros (aka rpm/deb files), and writing a proper install/setup script. Our Jenkins server could handle the former, as it already does nightly build/test jobs on CentOS/De

PiotrBracha
PiotrBracha commented Sep 3, 2019

I have Rails app, which uses utf-8 encoding.
First problem:
Sep 3 10:45:07 localhost mailslurper[61761]: time="2019-09-03T10:45:07+02:00" level=error msg="There was an error while storing your mail item: Error inserting new mail item in StoreMail: Error 1406: Data too long for column 'contentType' at row 1" who="Database Receiver"
appears when column contentType of table mailitem u

bug
jasonmunro
jasonmunro commented Mar 27, 2019

🚀 Feature

It would be nice to automatically add a user's Github repositories when github connect is enabled.

Design, Layout, Architecture

It should be pretty easy to query the user's repositories and add them to the user settings on github connect. The Github API already has an endpoint to list them, so we just need to write some code to fetch the list, parse it, and add them to the us

matthiasbeyer
matthiasbeyer commented Nov 3, 2017

Hi,

I have a feature request: Parsing emails from {buffer, file} would be really nice.

Because right now, you can write an email client with lettre, which stores mails on the filesystem (for sending them later), but you cannot (conveniently) load them later (loading would be necessary to check whether the files are still valid emails, for example) to send them out.

Also, you cannot use le

foxcpp
foxcpp commented Mar 3, 2020

The current implementation keeps making attempts with 30 seconds delay. This might not be the best approach. Probably the delay should grow exponentially like it does with message queue retries (of course, it should be reset after a successful update and should have an upper bound at like 30 minutes)

The code to change:
https://github.com/foxcpp/maddy/blob/8f1d57293cb2135da75503e853101d8e0b7f3

Improve this page

Add a description, image, and links to the smtp topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the smtp topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.