Differences between revisions 7 and 19 (spanning 12 versions)
Revision 7 as of 2009-01-16 07:03:51
Size: 1446
Editor: 151
Comment:
Revision 19 as of 2023-11-07 21:12:42
Size: 92
Editor: TimoSirainen
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
== Compiling ==
 1. Download and compile Dovecot '''v1.2''' sources (older versions won't work). imaptest uses its library functions. Dovecot doesn't have any external dependencies.
  1. Get the latest nightly snapshot from http://dovecot.org/nightly/dovecot-latest.tar.gz
  1. Compiling goes the usual way: {{{./configure && make}}} (there's no need for {{{make install}}})
  1. dovecot-1.2.alpha5: link dovecot-config.in as dovecot-config: ln -s ./dovecot-config.in ./dovecot-config
 1. Download and compile http://dovecot.org/nightly/imaptest/imaptest-latest.tar.gz
  * {{{./configure --with-dovecot=../dovecot-20080611 && make}}}
  * {{{--with-dovecot=<path>}}} parameter is used to specify path to Dovecot v1.2 sources' root directory.
 1. Either {{{make install}}} or run {{{src/imaptest}}} directly.
You may want to modify the default configuration from #defines in {{{src/settings.h}}}. This isn't required, but if you run imaptest often, this way you don't have to give the same parameters every time.
Line 13: Line 3:
== Mercurial repository ==
You can also get imaptest sources from [http://www.selenic.com/mercurial/ Mercurial] repository:

{{{
hg clone http://hg.dovecot.org/imaptest/
}}}
You can update it later with:

{{{
hg pull
hg update
}}}
You can see the latest changes using Mercurial's [http://hg.dovecot.org/imaptest/ web interface].

Run {{{autoreconf -i}}} to build configure script.
Moved to https://dovecot.github.io/imaptest/installation.html

None: ImapTest/Installation (last edited 2023-11-07 21:12:42 by TimoSirainen)