--Boundary-00=_ikvqK4LH7dCkboL Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit > For a quick and dirty solution *me* thinks about using python + mechanize > to simulate using a browser. attached script as cron job Works For Me(TM) :-) Bye Thorsten --Boundary-00=_ikvqK4LH7dCkboL Content-Type: text/x-python; charset="UTF-8"; name="reminder.py" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="reminder.py" #!/usr/bin/python # -*- coding: utf-8 -*- url = 'https://kolab.mydomain.de/client/imp/' user = 'termin@mydomain.de' password = 'mysecretpassword' processtime = 30 import sys, os, re from urllib2 import HTTPError from time import sleep import mechanize mech = mechanize.Browser() mech.set_handle_robots(False) try: mech.open(url) except HTTPError, e: sys.exit("%d: %s" % (e.code, e.msg)) mech.select_form(nr=0) mech["imapuser"] = user mech["pass"] = password try: mech.submit() except HTTPError, e: sys.exit("post failed: %d: %s" % (e.code, e.msg)) sleep(processtime) urls = [link.absolute_url for link in mech.links(url_regex=re.compile(r"logout"))] try: mech.open(urls[0]) except HTTPError, e: sys.exit("post failed: %d: %s" % (e.code, e.msg)) --Boundary-00=_ikvqK4LH7dCkboL Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Kolab-users mailing list Kolab-users@kolab.org https://kolab.org/mailman/listinfo/kolab-users --Boundary-00=_ikvqK4LH7dCkboL--