-
Notifications
You must be signed in to change notification settings - Fork 65
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
DOC: rework readme #126
base: master
Are you sure you want to change the base?
DOC: rework readme #126
Conversation
DJCrashdummy
commented
Feb 21, 2020
- unified and corrected php-syntax
- reworked IMAP description in the style of the XMPP description to prevent confusion with the order and numeration
- added line breaks to XMPP description to make it easier readable
- reworked SMB & HTTP heading
- added jump-marks to headers for convenience
- reordered sections to fit the order in the intro and at https://apps.nextcloud.com/apps/user_external
- unified and corrected php-syntax - reworked IMAP description in the style of the XMPP description to prevent confusion with the order and numeration - added line breaks to XMPP description to make it easier readable - reworked SMB & HTTP heading - added jump-marks to headers for convenience - reordered sections to fit the order in the intro and at https://apps.nextcloud.com/apps/user_external
btw: in the brief description on top the additional backends and the "website" (appstore-url: https://apps.nextcloud.com/apps/user_external) would fit. |
hi, thanks very much! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in general: nice improvements! thank you very much :)
sorry @violoncelloCH, i'm not a developer and thus i don't use the CLI in this case... is this somehow possible via the github-GUI? |
I see... basically you just need to have |
sorry for asking already answered questions. 🤦♂️ i've read the link again and finally got it. 😉
i've looked around quite a while, but i'm afraid it's not possible. anyway... i'd prefer to not make my email-address public because of possible spam! 😒 |
- parameter number `2` (the 3rd one): adapted options according to nextcloud#126 (comment) to fit nextcloud#122 - parameter number `3` (the 4th one): added the second possibility to allow all domains according to nextcloud#126 (comment) Signed-off-by: DJCrashdummy <DJCrashdummy@users.noreply.github.com>
Signed-off-by: DJCrashdummy <DJCrashdummy@users.noreply.github.com>
are there for |
as you can see here Lines 38 to 46 in 147b127
there are default values for all of those... however those are more something which grew historically; meaning the default values were set so that nothing changes for existing setups which don't configure a value for the additional parameters... so I guess it's safe to give a different example in the Readme if it's sensible and we can explain the choice :) |
of the address. | ||
`0`: IMAP server | ||
`1`: IMAP server port (default `143`) | ||
`2`: secure connection |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
okay, update for this parameter (also for the example above). We missed the case of starttls (as in #135). So code changes under way in #138. To conclude there is:
ssl
for ssl/tls connections as normaly on port 993 which are encrypted from the beginningtls
for STARTTLS which is normally used on port 143 (so connection is initialized but then "upgraded" to a tls connection via a respective IMAP command with instructions)notls
(or technically any different value as of the implementations, butnotls
should be used) for plain connections (normally on port 143)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
okay, this might change again, as there is an intention to default to STARTTLS (everything that's not explicit ssl or notls) in #140