Skip to content

Commit

Permalink
Merge pull request #43 from nextcloud/fix/readme-links
Browse files Browse the repository at this point in the history
fix broken readme links
  • Loading branch information
MorrisJobke authored Feb 28, 2019
2 parents e97d46d + a977334 commit ad3a416
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ To enable SSL connections via `ftps`, append a second parameter `true`:
### Dependencies
PHP automatically contains basic FTP support.

For SSL-secured FTP connections via ftps, the PHP [openssl extension][0]
For SSL-secured FTP connections via ftps, the PHP [openssl extension][FTP_0]
needs to be activated.

[0]: http://php.net/openssl
[FTP_0]: http://php.net/openssl



Expand All @@ -72,21 +72,21 @@ Add the following to your `config.php`:
),

This connects to the IMAP server on IP `127.0.0.1`, in readonly mode.
If a domain name (e.g. example.com) is specified, then this makes sure that
If a domain name (e.g. example.com) is specified, then this makes sure that
only users from this domain will be allowed to login. After successfull
login the domain part will be striped and the rest used as username in
NextCloud. e.g. '[email protected]' will be 'username' in NextCloud.

Read the [imap_open][0] PHP manual page to learn more about the allowed
Read the [imap_open][IMAP_0] PHP manual page to learn more about the allowed
parameters.

[0]: http://php.net/imap_open#refsect1-function.imap-open-parameters
[IMAP_0]: http://php.net/imap_open#refsect1-function.imap-open-parameters


### Dependencies
The PHP [IMAP extension][1] has to be activated.
The PHP [IMAP extension][IMAP_1] has to be activated.

[1]: http://php.net/imap
[IMAP_1]: http://php.net/imap



Expand Down Expand Up @@ -136,7 +136,7 @@ Add the following to your `config.php`:
BasicAuth
------

Authenticate users by an [HTTP Basic access authentication][1] call.
Authenticate users by an [HTTP Basic access authentication][BasicAuth_0] call.
HTTP server of your choice to authenticate. It should return HTTP 2xx for correct credentials and an appropriate other error code for wrong ones or refused access.

### Configuration
Expand All @@ -152,7 +152,7 @@ Add the following to your `config.php`:
),


[1]: https://en.wikipedia.org/wiki/Basic_access_authentication
[BasicAuth_0]: https://en.wikipedia.org/wiki/Basic_access_authentication

Alternatives
------------
Expand Down

0 comments on commit ad3a416

Please sign in to comment.