12 messages in net.sourceforge.lists.courier-maildropRe: [maildropl] MySQL support for mai...
FromSent OnAttachments
rom...@rs-labs.comNov 11, 2003 10:09 am 
Thomas HugNov 11, 2003 10:41 am 
Roman MedinaNov 15, 2003 4:06 am 
Thomas HugNov 15, 2003 4:27 am 
Thomas HugNov 15, 2003 4:33 am 
Roman MedinaNov 15, 2003 11:27 am 
Thomas HugNov 15, 2003 3:57 pm 
Martin List-PetersenNov 16, 2003 10:04 am 
Thomas HugNov 16, 2003 10:08 am 
Martin List-PetersenNov 16, 2003 10:13 am 
Thomas HugNov 16, 2003 10:22 am 
Martin List-PetersenNov 16, 2003 10:27 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: [maildropl] MySQL support for maildropActions...
From:Thomas Hug (to@nine.ch)
Date:Nov 15, 2003 4:27:42 am
List:net.sourceforge.lists.courier-maildrop

hi roman

On Sat, 15 Nov 2003 13:07, Roman Medina wrote:

Apt-get tries to replace my customized package. How is the best approach to solve it? Changing version number? Tunning config file for apt? Please, detailed example would be welcome.

i set up my own debian source and set the priorities in the /etc/apt/preferences to take my packages. the only bad thing about this is, that apt does not upgrade on new orgiginal versions :)

maybe this is an overkill for just one server...

my script for generating my mirror:

------------------ #!/bin/bash

echo "fetch files from source directories ..." cd /usr/local/src mv packages/*/*.deb debian/

echo "update packages.gz file ..." echo "------------------------------------------------------------------------" cd /var/www/debian rm dists/testing/main/binary-i386/Packages.gz dpkg-scanpackages dists/testing/main/binary-i386 /dev/null > \ dists/testing/main/binary-i386/Packages gzip dists/testing/main/binary-i386/Packages echo "------------------------------------------------------------------------" echo "done."

-------------------------

my Release file:

------------------------ Archive: testing Component: main Origin: xy.nine.ch Label: nine.ch Architecture: i386

--------------------------

the extensions in /etc/apt/sources.list

------------- deb http://xy.nine.ch/debian/ testing main

----------------------

the /etc/apt/preferences

--------- Package: courier-maildrop Pin: release l=nine.ch Pin-Priority: 1500

-tom