Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I want to change from starttls to SSL in the domain ini file #648

Closed
the-djmaze opened this issue Nov 9, 2022 · 6 comments
Closed

I want to change from starttls to SSL in the domain ini file #648

the-djmaze opened this issue Nov 9, 2022 · 6 comments
Labels
documentation Improvements or additions to documentation

Comments

@the-djmaze
Copy link
Owner

the-djmaze commented Nov 9, 2022

quick question - for some reason I can no longer login to admin panel - I want to change from starttls to SSL - (imap on 993, smtp on 465) - in the domain ini file - i currently use "TLS" - what do I change it to to get SSL ?

I meant the 2 settings: imap_secure nd smtp_secure
I glanced at code but wasn't obvious - i found TLS but nothing obvious like SSL

Originally posted by @gene-git in #641 (comment)

@the-djmaze
Copy link
Owner Author

domain ini files are obsolete. it is changed to be json files so there are two ways:

domain.ini

imap_port = 993
imap_secure = "SSL"

domain.json

{
    "imapPort": 993,
    "imapSecure": 1,
}

0 = none/auto-starttls, 1=ssl, 2=force starttls

@the-djmaze the-djmaze changed the title quick question - for some reason I can no longer login to admin panel - I want to change from starttls to SSL - (imap on 993, smtp on 465) - in the domain ini file - i currently use "TLS" - what do I change it to to get SSL ? I want to change from starttls to SSL in the domain ini file Nov 9, 2022
@the-djmaze the-djmaze added the documentation Improvements or additions to documentation label Nov 9, 2022
@gene-git
Copy link

gene-git commented Nov 9, 2022

aweseome thanks - i see the default json will switch over to that - will application.ini -> applciation.json as well?

@the-djmaze
Copy link
Owner Author

will application.ini -> applciation.json as well?

Not at the moment as that is more complicated.

@gene-git
Copy link

gene-git commented Nov 9, 2022

I assume i switch from domain.com.ini to domain.com.json - or is there some other part of config that needs to change

@gene-git
Copy link

gene-git commented Nov 9, 2022

comment - the template in default.json is missing 'name" - without it stuff seems not to work.

@the-djmaze
Copy link
Owner Author

V2.21 is changed as it will support more control in the future.
Open domain via ?admin and save.
You will see the new structure.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

2 participants