summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalcolm Lashley <malc@gentoo.org>2004-07-26 22:21:54 +0000
committerMalcolm Lashley <malc@gentoo.org>2004-07-26 22:21:54 +0000
commit0c93fdfb18d2a99286d5cd70b7849ad042eb57ba (patch)
treed51d7a3fb552968df51087a95b8608ad36301a15 /net-mail/hotwayd/files
parentveriosn bump, add virtual/mailx, block virtual/mailx. (diff)
downloadhistorical-0c93fdfb18d2a99286d5cd70b7849ad042eb57ba.tar.gz
historical-0c93fdfb18d2a99286d5cd70b7849ad042eb57ba.tar.bz2
historical-0c93fdfb18d2a99286d5cd70b7849ad042eb57ba.zip
Revbump, amd64 fix, closes bug #45567
Diffstat (limited to 'net-mail/hotwayd/files')
-rw-r--r--net-mail/hotwayd/files/digest-hotwayd-0.81
-rw-r--r--net-mail/hotwayd/files/hotwayd-0.8-amd64.patch13
-rw-r--r--net-mail/hotwayd/files/hotwayd-0.8.xinetd26
3 files changed, 40 insertions, 0 deletions
diff --git a/net-mail/hotwayd/files/digest-hotwayd-0.8 b/net-mail/hotwayd/files/digest-hotwayd-0.8
new file mode 100644
index 000000000000..2ad71bd95c62
--- /dev/null
+++ b/net-mail/hotwayd/files/digest-hotwayd-0.8
@@ -0,0 +1 @@
+MD5 b34d5166a2c6d7ba3970d3a0325c8c1a hotwayd-0.8.tar.bz2 148962
diff --git a/net-mail/hotwayd/files/hotwayd-0.8-amd64.patch b/net-mail/hotwayd/files/hotwayd-0.8-amd64.patch
new file mode 100644
index 000000000000..a74d9ab9131b
--- /dev/null
+++ b/net-mail/hotwayd/files/hotwayd-0.8-amd64.patch
@@ -0,0 +1,13 @@
+--- hotwayd-0.8/work/hotwayd-0.8/libghttp-1.0.9-mod/md5.h 2002-11-02 00:54:21.000000000 +0000
++++ hotwayd-0.8_patched/work/hotwayd-0.8/libghttp-1.0.9-mod/md5.h 2004-07-26 15:51:20.634345504 +0100
+@@ -38,7 +38,9 @@
+ typedef unsigned short int UINT2;
+
+ /* UINT4 defines a four byte word */
+-typedef unsigned long int UINT4;
++// not on x86_64 it ain't...
++//typedef unsigned long int UINT4;
++typedef unsigned int UINT4;
+
+ /* PROTO_LIST is defined depending on how PROTOTYPES is defined above.
+ If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
diff --git a/net-mail/hotwayd/files/hotwayd-0.8.xinetd b/net-mail/hotwayd/files/hotwayd-0.8.xinetd
new file mode 100644
index 000000000000..947409606596
--- /dev/null
+++ b/net-mail/hotwayd/files/hotwayd-0.8.xinetd
@@ -0,0 +1,26 @@
+# default: off
+# description: hotway daemon
+# - By default it listens to port 110 (default for pop3)
+# If you already have a pop3 server running, or you want it to listen
+# to another port change the value of "port = 110" below.
+# Change the value in your email client accordingly.
+# - By default it only allows access from localhost.
+# - Also all xinetd entries do not start by default.
+# One should manually enable the entries that one wants by
+# changing the value of "disable = yes" to "disable = no".
+# - Restart xinetd after changing anything in this file:
+# # /etc/init.d/xinetd restart
+
+service hotwayd
+{
+ only_from = localhost
+ socket_type = stream
+ wait = no
+ user = nobody
+ port = 110
+ server = /usr/sbin/hotwayd
+ #server_args = - http://proxy:8080 -u proxy_user -q proxy_password
+ log_on_success += USERID
+ log_on_failure += USERID
+ disable = yes
+}