Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content
  • Mail and Volumes

    Unsolved Support mail volumes
    3
    1 Votes
    3 Posts
    20 Views
    M
    Joseph. Thanks for the reply. Would it be something that you would be considering for the future, the possibility to add a feature move email data to a volume? I have a single domain with 25gb of mail. If it cannot be moved off I will have to enlarge the droplet. Thanks for your help and a great product.
  • Using Cloudron as an SMTP smarthost relay for other systems

    Unsolved Support mail relay
    3
    1 Votes
    3 Posts
    82 Views
    girishG
    @wu-lee we have to implement this feature. Currently, Cloudron will only accept email from external sources when incoming email (MX) is enabled. Even with incoming email enabled, it only accepts email from defined "mailboxes" . i.e as a hack you have to create a mailbox as a relay endpoint. BTW, why not just use the relay features of your MX?
  • unable to send email to a Gmail address

    Solved Support mail gmail
    14
    1 Votes
    14 Posts
    271 Views
    robiR
    @nostrdev So glad you listened when we chatted about that too! Welcome.
  • Mail delivery failed: returning message to sender

    Moved Discuss mail
    1
    0 Votes
    1 Posts
    70 Views
    No one has replied
  • outgoing mail issue and unbound?

    Solved Support mail
    5
    1 Votes
    5 Posts
    170 Views
    K
    Thank you all! the issue was the unbound service not working and also my email delivery issue too.
  • 2 Votes
    2 Posts
    114 Views
    N
    Hi @James - Many thanks for this. The changes already looks great and promising. May I make a suggestion ? I think, in this case, Freescout approach offers a greater granularity between email notification and in-app notification, with potential for further development based on the communication channel (Mobile if ever, API ? etc..), leaving the end admin users decide what works best for them Here is the screen I am referring to in Freescout. [image: 1753778253533-e6ab2fb5-e080-4b2e-8443-adde0ee3d332-64145699-7f368480-ce22-11e9-9ead-1ac3ef29ba9b-resized.png] If it is not too late in the development of this, maybe it might be worth considering?
  • 0 Votes
    9 Posts
    459 Views
    avatar1024A
    I've also tried to create a mailbox (test@mydomain.coop) and set-up a redirect with roundcube to three "external" email addressed (@gmail / @posteo), delivery fails with all of them. So it is not specifically with Cloudron mailing lists but a bigger issue with redirects in general. @staff any clues?
  • 0 Votes
    7 Posts
    468 Views
    girishG
    What is the use case to prevent internal routing? But if you set up an external MX record and add that MX host to your SPF also (so Cloudron will accept incoming), then I think it does what you want?
  • Custom SMTP Server settings?

    Cal.com mail feature-request
    7
    0 Votes
    7 Posts
    402 Views
    N
    @girish Thanks for this - This is a great workaround and fit the bill perfectly for us.
  • POP3 settings

    Discourse mail pop3
    7
    0 Votes
    7 Posts
    399 Views
    M
    Unfortunately I can't tell you preciesly. Once, I did reset the all the users preferences via the console: https://meta.discourse.org/t/reset-default-categories-watching-setting/244930/8 But there was no error message in the dashboard. Otherwise, I didn't do anything of importance. For updates, I think the error message appeared not before 3.4.3 or 3.4.4… Sorry for the vagueness.
  • sending emails doesn't seem to work?

    Pretix mail
    12
    1 Votes
    12 Posts
    851 Views
    C
    Thank you @james, that is great news.
  • "Email not configured properly" with PTR4 issue

    Solved Support ptr ptr records mail
    7
    0 Votes
    7 Posts
    480 Views
    aurelien-cA
    TTL issue ? I mean, this symptom lasted a very long time (a full year I'd say). Not seen since early June though. Maybe the "odd DNS issue" then. I guess this can be closed.
  • Spam as a Boolean value for filtering

    Feature Requests mail spam spamassassin
    3
    2 Votes
    3 Posts
    346 Views
    d19dotcaD
    @james Yes it’s technically a feature request. I only threw it in here since it seemed like Girish was already making adjustments to the filtering in the mail event log viewer. If you’re okay forking it to a feature request, that’s totally fine.
  • Cloudron falsely rejecting email based on spamhaus filters

    Unsolved Support mail spamhaus
    13
    2 Votes
    13 Posts
    1k Views
    d19dotcaD
    What's strange about this to me is I seem to be unaffected (so far at least), and I'm looking in Cloudron mail pages quite frequently. Not sure why but I am throwing this out there in case it has something to do with the region IP of the Cloudron servers? I'm located in Canada, in case that matters at all. I just wonder if there's a pattern for this perhaps with certain countries affected more than others, etc. Though I guess ultimately if Cloudron isn't properly accounting for blocked connections to Spamhaus and seeing a blocked connection as a listing, then that should still be fixed in the code if that's true. Sorry, ignore me I think, as I misunderstood the problem. I thought this was around Cloudron detecting that the IP of Cloudron was on the blocklist, but that would have no bearing on rejecting emails so I think I misunderstood. Sorry about that.
  • Mail problems on Ghost

    Ghost ghost mail mailgun
    9
    1 Votes
    9 Posts
    582 Views
    jamesJ
    Hello @bmann @bmann said in Mail problems on Ghost: bump on this Sorry that this topic did not get any traction for almost a week! @bmann said in Mail problems on Ghost: "Do not configure app's mail delivery settings The app's mail delivery settings is left alone. You can configure it inside the app." Where did you find this text? I could not find it in the documentation, the app package or anywhere. Would like to know where this came from since this might be misleading. @bmann said in Mail problems on Ghost: Going to try it! Wish me luck! If you want to tinker with apps, always create an app backup first or even clone the app so you can take a shotgun approach to the clone. There are certain settings for each app that Cloudron will override on every app restart. I know @BrutalBirdie submitted a PR yesterday about this => https://git.cloudron.io/docs/docs/-/merge_requests/75/diffs According to the app startup https://git.cloudron.io/packages/ghost-app/-/blob/master/start.sh?ref_type=heads#L39 If CLOUDRON_MAIL_SMTP_SERVER is not empty it will set up the mail config on every app restart: if [[ -n "${CLOUDRON_MAIL_SMTP_SERVER:-}" ]]; then json -I -f /app/data/config.production.json \ -e "this.mail.from = \"${CLOUDRON_MAIL_FROM_DISPLAY_NAME:-Ghost} <${CLOUDRON_MAIL_FROM}>\"" \ -e "this.mail.options.host = '${CLOUDRON_MAIL_SMTP_SERVER}'" \ -e "this.mail.options.port = '${CLOUDRON_MAIL_SMTP_PORT}'" \ -e "this.mail.options.auth.user = '${CLOUDRON_MAIL_SMTP_USERNAME}'" \ -e "this.mail.options.auth.pass = '${CLOUDRON_MAIL_SMTP_PASSWORD}'" fi You may want to disable the mail config for the app to avoid this. See => https://docs.cloudron.io/apps/#disable-email-configuration
  • (outlook) Security certificate cannot be verified

    Solved Support certificates mail email
    10
    2
    1 Votes
    10 Posts
    652 Views
    P
    Hi @fbartels You're right, double checked and it always defaults to smtp. instead of .my When manually changing on both PC and Mobile, the SMTP accounts can be added without the certificate error! Thanks Everyone!
  • 1 Votes
    2 Posts
    264 Views
    J
    @mrhakash said in Outbound Emails Queued — NXDOMAIN Error and Local DNS Resolution Issue: dig @127.0.0.1 gmail.com mx returns: connection refused You have to check host -t MX gmail.com 127.0.0.150 . Can you also run cloudron-support --troubleshoot for hints?
  • Haraka release

    Solved Support mail
    32
    1 Votes
    32 Posts
    3k Views
    J
    @mmtrade the image looks correct . the issue is something else then . if you write to support@cloudron.io, then we have to debug this again .
  • Email search not working properly

    Solved Support mail solr
    11
    2 Votes
    11 Posts
    613 Views
    J
    @avatar1024 said in Email search not working properly: What's tika? tika is this - https://tika.apache.org/ . it converts the pdf/docs attachments in emails to text to make them searchable
  • Restoring emails failed when moving cloudron to a new server

    Solved Support mail restore
    3
    1 Votes
    3 Posts
    395 Views
    E
    Here the issue was that the e-mails have been moved to the new cloudron server only partially, and the new folder wasn't created in this case, so when I tried to move this in Thunderbird, it failed. So, this is solved now