Re-format URLs in README.md.

This commit is contained in:
Zhang Huangbin 2014-09-19 10:02:39 +08:00
parent 7d0e45fc50
commit d3f05af68b
2 changed files with 18 additions and 18 deletions

View File

@ -2,31 +2,31 @@
# How to
* [ How to allow user to send email without authentication ](default/4-howto/allow.user.to.send.email.without.authentication.md)
* [ Amavisd + SpamAssassin not working, no mail header (X-Spam-*) inserted.](default/4-howto/amavisd.no.x-spam.headers.md)
* [ How to completely disable amavisd/ClamAV/SpamAssassin](default/4-howto/completely.disable.amavisd.clamav.spamassassin.md)
* [ How to disable spam virus scanning for outgoing mails](default/4-howto/disable.spam.virus.scanning.for.outgoing.mails.md)
* [ Configure Thunderbird as mail client (IMAP, SMTP and global ldap address book)](default/4-howto/howto.configure.thunderbird.for.iredmail.md)
* [ How to enable SMTPS service (SMTP over SSL, port 465)](default/4-howto/howto.enable.smtps.service.md)
* [ How to pipe incoming email for certain user to external script ](default/4-howto/pipe.incoming.email.for.certain.user.to.external.script.md)
* [ How to quarantine clean mail into SQL database](default/4-howto/quarantining.clean.mail.md)
* [ How to force Dovecot to recalculate mailbox quota ](default/4-howto/recalculate.mailbox.quota.md)
* [ How to store spamassassin bayes in SQL](default/4-howto/store.spamassassin.bayes.in.sql.md)
* [ How to perform silent/unattended iRedMail installation](default/4-howto/unattended.iredmail.installation.md)
* [ How to use or migrate password hashes](default/4-howto/use.or.migrate.password.hashes.md)
* [ How to allow user to send email without authentication ](src/default/4-howto/allow.user.to.send.email.without.authentication.md)
* [ Amavisd + SpamAssassin not working, no mail header (X-Spam-*) inserted.](src/default/4-howto/amavisd.no.x-spam.headers.md)
* [ How to completely disable amavisd/ClamAV/SpamAssassin](src/default/4-howto/completely.disable.amavisd.clamav.spamassassin.md)
* [ How to disable spam virus scanning for outgoing mails](src/default/4-howto/disable.spam.virus.scanning.for.outgoing.mails.md)
* [ Configure Thunderbird as mail client (IMAP, SMTP and global ldap address book)](src/default/4-howto/howto.configure.thunderbird.for.iredmail.md)
* [ How to enable SMTPS service (SMTP over SSL, port 465)](src/default/4-howto/howto.enable.smtps.service.md)
* [ How to pipe incoming email for certain user to external script ](src/default/4-howto/pipe.incoming.email.for.certain.user.to.external.script.md)
* [ How to quarantine clean mail into SQL database](src/default/4-howto/quarantining.clean.mail.md)
* [ How to force Dovecot to recalculate mailbox quota ](src/default/4-howto/recalculate.mailbox.quota.md)
* [ How to store spamassassin bayes in SQL](src/default/4-howto/store.spamassassin.bayes.in.sql.md)
* [ How to perform silent/unattended iRedMail installation](src/default/4-howto/unattended.iredmail.installation.md)
* [ How to use or migrate password hashes](src/default/4-howto/use.or.migrate.password.hashes.md)
# Third-party integrations.
* [ How to install SOGo on CentOS 6 with iRedMail (MySQL backend)](default/5-integrations/sogo-centos-6-iredmail-mysql.md)
* [ How to install SOGo on CentOS 6 with iRedMail (MySQL backend)](src/default/5-integrations/sogo-centos-6-iredmail-mysql.md)
# Backup and Restore
* [How to migrate old iRedMail server to the latest stable release](default/7-backup-restore/migrate.to.new.iredmail.server.md)
* [How to migrate old iRedMail server to the latest stable release](src/default/7-backup-restore/migrate.to.new.iredmail.server.md)
# Troubleshooting and Debug
* [ How to turn on debug mode in Dovecot](default/9-troubleshooting/turn.on.debug.mode.in.dovecot.md)
* [ How to turn on debug mode in Dovecot](src/default/9-troubleshooting/turn.on.debug.mode.in.dovecot.md)
# Frequently Asked Questions
* [ Why append timestamp in maildir path](default/99-faq/why.append.timestamp.in.maildir.path.md)
* [ Why append timestamp in maildir path](src/default/99-faq/why.append.timestamp.in.maildir.path.md)

View File

@ -94,8 +94,8 @@ for chapter_dir in ${all_chapter_dirs}; do
#echo "article title: ${_article_title}"
echo "* [${_article_title}](${chapter_dir_in_article}/${article_html_file})" >> ${INDEX_MD}
# 'default' is branch name in bitbucket.
echo "* [${_article_title}](default/${article_file_without_prefix})" >> ${README_MD}
# 'src/default/' is path to view source file on bitbucket.org
echo "* [${_article_title}](src/default/${article_file_without_prefix})" >> ${README_MD}
${CMD_CONVERT} ${article_file} ${_output_chapter_dir} title="${_article_title}"
done