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! |
violoncelloCH
left a comment
There was a problem hiding this comment.
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.
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:
sslfor ssl/tls connections as normaly on port 993 which are encrypted from the beginningtlsfor 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, butnotlsshould be used) for plain connections (normally on port 143)
There was a problem hiding this comment.
okay, this might change again, as there is an intention to default to STARTTLS (everything that's not explicit ssl or notls) in #140