<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /></head><body style='font-size: 10pt; font-family: Verdana,Geneva,sans-serif'>
<p>Many many many many thanks a lot Brong!!!!!! :) :) :) :) :) :) :)</p>
<div>---<br />
<div class="firmasarenet" style="clear: both; text-align: left;">
<div class="imgsarenet" style="margin: 0 0 10px 0;"><img src="https://www.sarenet.es/estaticos/LogoSarenetEmails.png?newlogo" alt="sarenet" /></div>
<div class="titulosarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: bold; font-size: 14px; color: #333333;"><strong>Egoitz Aurrekoetxea</strong></div>
<div class="dptosarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: normal; font-size: 12px; color: #333333;">Departamento de sistemas</div>
<div class="textosarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: normal; font-size: 12px; color: #333333;">944 209 470<br />Parque Tecnológico. Edificio 103<br />48170 Zamudio (Bizkaia)</div>
<div class="lnksarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: normal; font-size: 12px; color: #007ac4; line-height: 1.2;"><a id="mailto" style="font-size: 12px; color: #007ac4; text-decoration: underline;" href="mailto:egoitz@sarenet.es"><label id="label_email">egoitz@sarenet.es</label></a></div>
<div class="lnksarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: normal; font-size: 12px; color: #007ac4; line-height: 1.2;"><a style="font-size: 12px; color: #007ac4; text-decoration: underline;" href="http://www.sarenet.es">www.sarenet.es</a></div>
<br />
<div class="imprimirsarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: normal; font-size: 10px; color: #a0c361;">Antes de imprimir este correo electrónico piense si es necesario hacerlo.</div>
</div>
</div>
<p><br /></p>
<p>El 11-02-2019 15:19, Bron Gondwana escribió:</p>
<blockquote type="cite" style="padding: 0 0.4em; border-left: #1010ff 2px solid; margin: 0"><!-- html ignored --><!-- head ignored --><!-- meta ignored -->
<div style="font-family: Arial;">It's definitely safe to have one rolling mode writing and one repacking.  I wouldn't run multiple repacks in parallel, as they can wind up doing duplicate work (though the end result should always be correct and safe).</div>
<div style="font-family: Arial;"> </div>
<div style="font-family: Arial;">Here's what we run:</div>
<div style="font-family: Arial;"> </div>
<div style="font-family: Arial;"># Any time the disk gets over 50%, compress -o single down to data</div>
<div style="font-family: Arial;">13 *  * * * [% INCLUDE cronjob c='/home/mod_perl/hm/scripts/xapian_compact.pl -a -o -d 50 temp data' %]</div>
<div style="font-family: Arial;"># Copy the temporary search databases down to data during the week</div>
<div style="font-family: Arial;">43 1  * * 1,2,3,4,5,6 [% INCLUDE cronjob c='/home/mod_perl/hm/scripts/xapian_compact.pl -a temp,meta data' %]</div>
<div style="font-family: Arial;"># Sundays repack the entire data directory</div>
<div style="font-family: Arial;">43 1  * * 0 [% INCLUDE cronjob c='/home/mod_perl/hm/scripts/xapian_compact.pl -a temp,meta,data data' %]</div>
<div style="font-family: Arial;"># Late on Sundays, pack any oversized data directories down to archive</div>
<div style="font-family: Arial;">0 15 * * 0 [% INCLUDE cronjob c='/home/mod_perl/hm/scripts/xapian_archive.pl -a' %]</div>
<div style="font-family: Arial;"> </div>
<div style="font-family: Arial;">And here's the interesting logic.  In xapian_compact.pl:</div>
<div style="font-family: Arial;"> </div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">  if ($Opts{d}) {<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">    my $Path = $Slot->SearchPath();<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">    my $Usage = df($Path);<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">    my $RunUsage = df("/run/cyrus");<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">    return Process::Status->new(0) if ($Usage->{per} < $Opts{d} and $RunUsage->{per} < $Opts{d});<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">  }<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;"> </span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">  my @args = (-z => $dest, -t => $src);<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">  push @args, '-v' if $Opts{v};<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">  push @args, '-o' if $Opts{o};<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">  push @args, '-F' if $Opts{F};<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">  push @args, '-X' if $Opts{X};<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">  push @args, ('-T' => $Opts{T}) if $Opts{T};<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">  push @args, ('-u' => $Opts{u}) if $Opts{u};<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">  my %RunOpts = (<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">    PrintOutput => 1,<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">  );<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">  $RunOpts{Nice} = 1 unless $Opts{N};<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">  $RunOpts{Daemon} = 1 if $Opts{D};<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;"> </span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">  $0 = "xapian_compact: $SN";<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">  $Slot->RunCommand(\%RunOpts, 'squatter', @args);<br /></span></div>
<div style="font-family: Arial;"> </div>
<div style="font-family: Arial;">And in xapian_archive.pl:</div>
<div style="font-family: Arial;"> </div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">my $Percent = $Opts{P} || 20;</span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">[...]<br /></span></div>
<div style="font-family: Arial;"> </div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">  foreach my $user (sort keys %$DataUsage) {<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">    my $au = $ArchiveUsage->{$user} || 1;<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">    my $du = $DataUsage->{$user} || 1;<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">    if ($du < 5000) {<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">      print "Too small $user ($du)\n";<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">      next;<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">    }<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">    my $This = int($du * 100 / $au);<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">    if ($This < $Percent) {<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">      print "Not enough dirty $user: ($du, $au)\n";<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">      next;<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">    }<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">    print "Recompacting $user: ($du, $au)\n";<br /></span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">    my @args = (-z => 'archive', -t => 'data,archive');</span></div>
<div style="font-family: Arial;"><span class="font" style="font-family: menlo, consolas, monospace, sans-serif;">[...]<br /></span></div>
<div style="font-family: Arial;"> </div>
<div style="font-family: Arial;">In summary, repack data down to archive if data is more than 1/5 size of existing archive.  So each of these scripts is a wrapper around squatter to help it run automatically.</div>
<div style="font-family: Arial;"> </div>
<div style="font-family: Arial;">Bron.</div>
<div style="font-family: Arial;"> </div>
<div style="font-family: Arial;"> </div>
<div style="font-family: Arial;">On Mon, Feb 11, 2019, at 21:55, Egoitz Aurrekoetxea wrote:</div>
<blockquote id="fastmail-quoted">
<p>Now I'm noticing for instance, for moving data between Xapian databases.. you need to launch something like :</p>
<div style="font-family: Arial;"> </div>
<div style="font-family: Arial;">sudo -u cyrus /usr/cyrus/bin/squatter -C /usr/local/etc/imapd.conf -v -z archive -t temp,meta,data,archive -u user/egoitz@sarenet.es</div>
<div style="font-family: Arial;"> </div>
<div style="font-family: Arial;"> </div>
<div style="font-family: Arial;">perhaps would be better to do :</div>
<div style="font-family: Arial;">sudo -u cyrus /usr/cyrus/bin/squatter -C /usr/local/etc/imapd.conf <u><strong>-F</strong></u> -v -z archive -t temp,meta,data,archive -u user/egoitz@sarenet.es</div>
<div style="font-family: Arial;">But then, having two Squatter processes running at same time, one for rolling mode and one for moving/repacking data, should not be an issue?.</div>
<div style="font-family: Arial;"> </div>
<div style="font-family: Arial;"> </div>
<div style="font-family: Arial;">Thanks mates!!</div>
<div style="font-family: Arial;"> </div>
<div>
<div style="font-family: Arial;">---</div>
<div style="font-family: Arial;"> </div>
<div class="fastmail-quoted-firmasarenet" style="clear: both; text-align: left;">
<div class="fastmail-quoted-imgsarenet" style="margin: 0px 0px 10px 0px;"><img src="https://www.sarenet.es/estaticos/LogoSarenetEmails.png?newlogo" alt="sarenet" /></div>
<div class="fastmail-quoted-titulosarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: bold; font-size: 14px; color: #333333;"><strong>Egoitz Aurrekoetxea</strong></div>
<div class="fastmail-quoted-dptosarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: normal; font-size: 12px; color: #333333;">Departamento de sistemas</div>
<div class="fastmail-quoted-textosarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: normal; font-size: 12px; color: #333333;">
<div style="font-family: Arial;">944 209 470</div>
<div style="font-family: Arial;">Parque Tecnológico. Edificio 103</div>
<div style="font-family: Arial;">48170 Zamudio (Bizkaia)</div>
</div>
<div class="fastmail-quoted-lnksarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: normal; font-size: 12px; color: #007ac4; line-height: 1.2;"><label id="fastmail-quoted-label_email">egoitz@sarenet.es<br /></label></div>
<div class="fastmail-quoted-lnksarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: normal; font-size: 12px; color: #007ac4; line-height: 1.2;"><a style="font-size: 12px; color: #007ac4; text-decoration-line: underline; text-decoration-style: solid; text-decoration-color: currentcolor;" href="http://www.sarenet.es" target="_blank" rel="noopener noreferrer">www.sarenet.es</a></div>
<div style="font-family: Arial;"> </div>
<div class="fastmail-quoted-imprimirsarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: normal; font-size: 10px; color: #a0c361;">Antes de imprimir este correo electrónico piense si es necesario hacerlo.</div>
</div>
</div>
<p><br /></p>
<p>El 11-02-2019 11:22, Egoitz Aurrekoetxea escribió:</p>
<blockquote style="border-left-color: #1010ff; border-left-style: solid; border-left-width: 2px; padding: 0px 0.4em 0px 0.4em; margin: 0px;">
<p>Hi Bron,</p>
<p><br /></p>
<p>So, it would be interesting to run once a day... for instance in cyrus.conf in events section :</p>
<p>repack_xapian      cmd="squatter -F" at=0200</p>
<p>Is it needed top stop the other rolling Squatter we run, in same cyrus.conf as :</p>
<p><br /></p>
<div style="font-family: Arial;">START {</div>
<div style="font-family: Arial;">  # do not delete this entry!</div>
<div style="font-family: Arial;">  recover       cmd="ctl_cyrusdb -r"</div>
<div style="font-family: Arial;"> </div>
<div style="font-family: Arial;">  squatter cmd="squatter -R"</div>
<div style="font-family: Arial;">}</div>
<p><br /></p>
<p><br /></p>
<p>Thank you so much for all the clarifications mate :) really :)</p>
<p><br /></p>
<p>Cheers!</p>
<div>
<div style="font-family: Arial;">---</div>
<div style="font-family: Arial;"> </div>
<div class="fastmail-quoted-firmasarenet" style="clear: both; text-align: left;">
<div class="fastmail-quoted-imgsarenet" style="margin: 0px 0px 10px 0px;"><img src="https://www.sarenet.es/estaticos/LogoSarenetEmails.png?newlogo" alt="sarenet" /></div>
<div class="fastmail-quoted-titulosarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: bold; font-size: 14px; color: #333333;"><strong>Egoitz Aurrekoetxea</strong></div>
<div class="fastmail-quoted-dptosarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: normal; font-size: 12px; color: #333333;">Departamento de sistemas</div>
<div class="fastmail-quoted-textosarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: normal; font-size: 12px; color: #333333;">
<div style="font-family: Arial;">944 209 470</div>
<div style="font-family: Arial;">Parque Tecnológico. Edificio 103</div>
<div style="font-family: Arial;">48170 Zamudio (Bizkaia)</div>
</div>
<div class="fastmail-quoted-lnksarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: normal; font-size: 12px; color: #007ac4; line-height: 1.2;"><label id="fastmail-quoted-label_email">egoitz@sarenet.es<br /></label></div>
<div class="fastmail-quoted-lnksarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: normal; font-size: 12px; color: #007ac4; line-height: 1.2;"><a style="font-size: 12px; color: #007ac4; text-decoration-line: underline; text-decoration-style: solid; text-decoration-color: currentcolor;" href="http://www.sarenet.es" target="_blank" rel="noopener noreferrer">www.sarenet.es</a></div>
<div style="font-family: Arial;"> </div>
<div class="fastmail-quoted-imprimirsarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: normal; font-size: 10px; color: #a0c361;">Antes de imprimir este correo electrónico piense si es necesario hacerlo.</div>
</div>
</div>
<p><br /></p>
<p>El 11-02-2019 10:23, Bron Gondwana escribió:</p>
<blockquote style="border-left-color: #1010ff; border-left-style: solid; border-left-width: 2px; padding: 0px 0.4em 0px 0.4em; margin: 0px;">
<div style="font-family: Arial;">Conversations.db is an index over lots of interesting bits of the message, but the key part that's used by Xapian is the mapping from G key (aka: GUID, aka: sha1 of the message RFC822 data) to individual email.  It's used for deduplication and for mapping from results to messages.</div>
<div style="font-family: Arial;"> </div>
<div style="font-family: Arial;">The data in conversations.db is added and removed in real time as messages are appended and updated in the cyrus.index.</div>
<div style="font-family: Arial;"> </div>
<div style="font-family: Arial;">The data in the xapian databases on the other hand is append only - so you can wind up with hits that no longer map to existing emails.  The way to solve that is with a xapian repack that filters messages - which can be done using the -F flag to squatter.</div>
<div style="font-family: Arial;"> </div>
<div style="font-family: Arial;">Cheers,</div>
<div style="font-family: Arial;"> </div>
<div style="font-family: Arial;">Bron.</div>
<div style="font-family: Arial;"> </div>
<div style="font-family: Arial;">On Sat, Feb 9, 2019, at 23:04, Egoitz Aurrekoetxea wrote:</div>
<blockquote id="fastmail-quoted-fastmail-quoted">
<p>Good morning,</p>
<p><br /></p>
<p>As far as I understood, for Xapian you first create it's conversation database in order to work. Later you create database(s) for each mailbox where Xapian can search in. You can move data between them, new mails become indexed for instance Squatter in rolling mode... that's ok... and understood I  think. I was wondering, what happens when mail indexed in the archive database in removed and then does not exist any more in the database... does Squatter rolling log manage that too?.</p>
<p><br /></p>
<p>By the way. I was wondering if mail gets indexed in the tier databases (for instance in Fastmail in temp, meta, data, archine...) what's the role or function of conversations databases you create with ctl_conversationsdb -b -r ?.</p>
<p><br /></p>
<p>Cheers!</p>
<div>
<div style="font-family: Arial;">--</div>
<div style="font-family: Arial;"> </div>
<div class="fastmail-quoted-fastmail-quoted-firmasarenet" style="clear: both; text-align: left;">
<div class="fastmail-quoted-fastmail-quoted-imgsarenet" style="margin: 0px 0px 10px 0px;"><img src="https://www.sarenet.es/estaticos/LogoSarenetEmails.png?newlogo" alt="sarenet" /></div>
<div class="fastmail-quoted-fastmail-quoted-titulosarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: bold; font-size: 14px; color: #333333;"><strong>Egoitz Aurrekoetxea</strong></div>
<div class="fastmail-quoted-fastmail-quoted-dptosarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: normal; font-size: 12px; color: #333333;">Departamento de sistemas</div>
<div class="fastmail-quoted-fastmail-quoted-textosarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: normal; font-size: 12px; color: #333333;">
<div style="font-family: Arial;">944 209 470</div>
<div style="font-family: Arial;">Parque Tecnológico. Edificio 103</div>
<div style="font-family: Arial;">48170 Zamudio (Bizkaia)</div>
</div>
<div class="fastmail-quoted-fastmail-quoted-lnksarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: normal; font-size: 12px; color: #007ac4; line-height: 1.2;"><label id="fastmail-quoted-fastmail-quoted-label_email">egoitz@sarenet.es<br /></label></div>
<div class="fastmail-quoted-fastmail-quoted-lnksarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: normal; font-size: 12px; color: #007ac4; line-height: 1.2;"><a style="font-size: 12px; color: #007ac4; text-decoration-line: underline; text-decoration-style: solid; text-decoration-color: currentcolor;" href="http://www.sarenet.es" target="_blank" rel="noopener noreferrer">www.sarenet.es</a></div>
<div style="font-family: Arial;"> </div>
<div class="fastmail-quoted-fastmail-quoted-imprimirsarenet" style="font-family: Helvetica, Arial, sans-serif; font-weight: normal; font-size: 10px; color: #a0c361;">Antes de imprimir este correo electrónico piense si es necesario hacerlo.</div>
</div>
</div>
<div>----</div>
<div>Cyrus Home Page: http://www.cyrusimap.org/</div>
<div>List Archives/Info: http://lists.andrew.cmu.edu/pipermail/info-cyrus/</div>
<div>To Unsubscribe:</div>
<div>https://lists.andrew.cmu.edu/mailman/listinfo/info-cyrus</div>
</blockquote>
<div style="font-family: Arial;"> </div>
<div id="fastmail-quoted-sig56629417">
<div class="fastmail-quoted-signature">--</div>
<div class="fastmail-quoted-signature">  Bron Gondwana, CEO, FastMail Pty Ltd</div>
<div class="fastmail-quoted-signature">  brong@fastmailteam.com</div>
<div class="fastmail-quoted-signature"> </div>
</div>
<div style="font-family: Arial;"> </div>
<div style="font-family: Arial;"> </div>
<div class="fastmail-quoted-pre" style="font-family: monospace; padding: 0px; margin: 0px;">
<div style="font-family: Arial;">----</div>
<div style="font-family: Arial;">Cyrus Home Page: <a href="http://www.cyrusimap.org/" target="_blank" rel="noopener noreferrer">http://www.cyrusimap.org/</a></div>
<div style="font-family: Arial;">List Archives/Info: <a href="http://lists.andrew.cmu.edu/pipermail/info-cyrus/" target="_blank" rel="noopener noreferrer">http://lists.andrew.cmu.edu/pipermail/info-cyrus/</a></div>
<div style="font-family: Arial;">To Unsubscribe:</div>
<div style="font-family: Arial;"><a href="https://lists.andrew.cmu.edu/mailman/listinfo/info-cyrus" target="_blank" rel="noopener noreferrer">https://lists.andrew.cmu.edu/mailman/listinfo/info-cyrus</a></div>
</div>
</blockquote>
</blockquote>
<div>----</div>
<div>Cyrus Home Page: http://www.cyrusimap.org/</div>
<div>List Archives/Info: http://lists.andrew.cmu.edu/pipermail/info-cyrus/</div>
<div>To Unsubscribe:</div>
<div>https://lists.andrew.cmu.edu/mailman/listinfo/info-cyrus</div>
</blockquote>
<div style="font-family: Arial;"> </div>
<div id="sig56629417">
<div class="signature">--</div>
<div class="signature">  Bron Gondwana, CEO, FastMail Pty Ltd</div>
<div class="signature">  brong@fastmailteam.com</div>
<div class="signature"> </div>
</div>
<div style="font-family: Arial;"> </div>
<!-- html ignored --><br />
<div class="pre" style="margin: 0; padding: 0; font-family: monospace">----<br /> Cyrus Home Page: <a href="http://www.cyrusimap.org/" target="_blank" rel="noopener noreferrer">http://www.cyrusimap.org/</a><br /> List Archives/Info: <a href="http://lists.andrew.cmu.edu/pipermail/info-cyrus/" target="_blank" rel="noopener noreferrer">http://lists.andrew.cmu.edu/pipermail/info-cyrus/</a><br /> To Unsubscribe:<br /> <a href="https://lists.andrew.cmu.edu/mailman/listinfo/info-cyrus" target="_blank" rel="noopener noreferrer">https://lists.andrew.cmu.edu/mailman/listinfo/info-cyrus</a></div>
</blockquote>
</body></html>