Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ensign

Pages: [1] 2 3 4
1
For Sale / Wanted / For Sale:sharp Zaurus C860 Pda And Lots Of Accesso
« on: January 09, 2007, 05:42:22 pm »
Included in this sale
0. Sharp Zaurus C860 PDA with Cacko Zaurus Qtopia ROM 1.23 installed
1. Top quality leather travel/carry case
2. Top quality leather cable/carry case
3. UK Power adaptor
4. Socket Bluetooth CF Card (E)
5. Targus Pocket CF Modem 56k V.90 + Cable
6. AudioVox RTM-8000P GSM/GPRS Compact Flash Card
7. Retractable Charge/Sync Cable
8. Wisgo 802.11b Wireless Compact Flash Card
9. Xircom Compact Flash Ethernet 10 Card + Cable
10. All relevant Backup/Software CDs.

On ebay
http://cgi.ebay.co.uk/ws/eBayISAPI.dll?Vie...46937&rd=1&rd=1

Happy Bidding!

2
Software / Mail And Stuff
« on: April 19, 2006, 02:09:40 am »
Quote
I set uop a testing mail account if anyone can get it to work with msmtp-runque.sh let me know but for now I have tried everything I know....

user: msmtptest@thegrinder.ws
pass: pm me for the password

server: mail.thegrinder.ws
port: 25
tls/ssl supported

I have 20 bucks for the first one to make it work...
[div align=\"right\"][a href=\"index.php?act=findpost&pid=123569\"][{POST_SNAPBACK}][/a][/div]

No joy, I am afraid. Will keep trying though. I suggest you test the email client on  the zaurus with a 3rd party secure server like googlemail. When you have got that working then you can look at why it is not working with your mail server. The problem may be the ssl certificate on your mail server.

3
Software / Mail And Stuff
« on: April 17, 2006, 03:13:10 am »
Quote
Quote
ok, msmtp-runqueue.sh keeps giving me a no recipient warning then fails...any ideas?
[div align=\"right\"][{POST_SNAPBACK}][/a][/div]

Hmmm... strange. I had it working back when I was using Cacko. Can you post your .msmtprc ?
[div align=\"right\"][a href=\"index.php?act=findpost&pid=123477\"][{POST_SNAPBACK}][/a][/div]

if you look at my modified version of msmtp-runqueue.sh in this post [a href=\"https://www.oesf.org/forums/index.php?showtopic=16559&st=30]https://www.oesf.org/forums/index.php?showtopic=16559&st=30[/url] you will find a small change on line 42.

Code: [Select]
msmtp `cat "$MSMTPFILE"` < "$MAILFILE"
is now
Code: [Select]
msmtp -t `cat "$MSMTPFILE"` < "$MAILFILE"
Maybe someone needs to update the ipk.

Ensign.

4
Sharp ROMs / Pine Email Program With Ssl
« on: April 15, 2006, 03:35:40 am »
Quote
finally got fetchmail, procmail and pine to work well together. now I need to get msmtp to work.
[div align=\"right\"][a href=\"index.php?act=findpost&pid=123270\"][{POST_SNAPBACK}][/a][/div]

It was a long time ago when i got this going so forgive me if i miss anything.

1. in your .pinerc you must have
Code: [Select]
.pinerc:sendmail-path=/home/QtPalmtop/bin/msmtp-enqueue.sh    
2. I think i had to modify the msmtp scripts. here is my msmtp-enqueue.sh
Code: [Select]
#!/bin/sh

QUEUEDIR=$HOME/.msmtpqueue

# Set secure permissions on created directories and files
umask 077

# Change to queue directory (create it if necessary)
if [ ! -d "$QUEUEDIR" ]; then
    mkdir -p "$QUEUEDIR" || exit 1
fi
cd "$QUEUEDIR" || exit 1

# Create new unique filenames of the form
# MAILFILE:  ccyy-mm-dd-hh.mm.ss[-x].mail
# MSMTPFILE: ccyy-mm-dd-hh.mm.ss[-x].msmtp
# where x is a consecutive number only appended if you send more than one
# mail per second.
BASE="`date +%Y-%m-%d-%H.%M.%S`"
if [ -f "$BASE.mail" -o -f "$BASE.msmtp" ]; then
    TMP="$BASE"
    i=1
    while [ -f "$TMP-$i.mail" -o -f "$TMP-$i.msmtp" ]; do
  i=`expr $i + 1`
    done
    BASE="$BASE-$i"
fi
MAILFILE="$BASE.mail"
MSMTPFILE="$BASE.msmtp"

# Write command line to $MSMTPFILE
echo "$@" > "$MSMTPFILE" || exit 1

# Write the mail to $MAILFILE
cat > "$MAILFILE" || exit 1

# If we are online, run the queue immediately.
# Replace the test with something suitable for your site.
ping -c 1 www.google.com > /dev/null
if [ $? -eq 0 ]; then
    msmtp-runqueue.sh > /dev/null &
fi

exit 0
3. Also here is my msmtp-runqueue.sh
Code: [Select]
QUEUEDIR="$HOME/.msmtpqueue"
LOCKFILE="$QUEUEDIR/.lock"
MAXWAIT=120

# wait for a lock that another instance has set
SECONDS=0
while [ -e "$LOCKFILE" -a "$SECONDS" -lt "$MAXWAIT" ]; do
    sleep 1
    SECONDS="`expr "$SECONDS" + 1`"
done
if [ -e "$LOCKFILE" ]; then
    echo "Cannot use $QUEUEDIR: waited $MAXWAIT seconds for"
    echo "lockfile $LOCKFILE to vanish, giving up."
    echo "If you are sure that no other instance of this script is"
    echo "running, then delete the lock file."
    exit 1
fi

# change into $QUEUEDIR
cd "$QUEUEDIR" || exit 1

# check for empty queuedir
if [ "`echo *.mail`" = '*.mail' ]; then
    echo "No mails in $QUEUEDIR"
    exit 0
fi

# lock the $QUEUEDIR
touch "$LOCKFILE" || exit 1

# process all mails
for MAILFILE in *.mail; do
    echo "*** Sending $MAILFILE..."
    MSMTPFILE="`echo $MAILFILE | sed -e 's/mail/msmtp/'`"
    if [ ! -f "$MSMTPFILE" ]; then
  echo "No corresponding file $MSMTPFILE found"
  echo "FAILURE"
  continue
    fi
    msmtp -t `cat "$MSMTPFILE"` < "$MAILFILE"
    if [ $? -eq 0 ]; then
  rm "$MAILFILE" "$MSMTPFILE"
  echo "$MAILFILE sent successfully"
    else
  echo "FAILURE"
    fi
done

# remove the lock
rm -f "$LOCKFILE"

exit 0

4. Also my .msmtprc
Code: [Select]
defaults
logfile /mnt/card/temp/msmtp.log

account googlemail
host smtp.gmail.com
from @gmail.com
port 587
auth on
user
password
tls on

account default:googlemail

I had to use google because my isp would not allow me to send mails using their smtp server if i was not connected to their service. no good if you are on the road. you may have the same problem.

5
Personal Java/Jeode/J2ME Personal Profile / Mobile Gmaps On The Zaurus
« on: February 06, 2006, 07:30:44 am »
Quote
I still don't know exactly how to run them without a lot of hassle. Based on some stuff I've gleaned from here and there, they all have to be in the same directory and executed from the terminal.

[div align=\"right\"][a href=\"index.php?act=findpost&pid=113818\"][{POST_SNAPBACK}][/a][/div]


eji,

How does your console command-line (or shell script) look like?

Thanks,
ensign

6
Software / tkvol and Keyhelper for volume control
« on: December 23, 2005, 06:15:48 am »
Quote
If you have Keyhelper already installed, download the tkvol program:

http://tkmixi.s58.xrea.com/?plugin=attach&...ipk&refer=TKvol

jagrka,

Do you still have a copy of the tkvol.ipk. Thanks. The above mentioned website now returns a 404 error.

THanks,
Mawuli

7
Software / Tkvol
« on: December 21, 2005, 02:37:05 pm »
chal,
all the links lead to a dead end. i cannot find the actual ipk or binary, only references to it.
Thanks

8
Software / Tkvol
« on: December 21, 2005, 10:21:30 am »
Hi,
Have you got a copy of the tkvol ipk or binary for the zaurus? If so can u please upload to this thread. I can not find a copy anywhere.
Thanks.

9
C1000/3x00 General discussions / Podcasting With Zaurus !
« on: December 21, 2005, 06:57:53 am »
Quote
i've just found a japanese podcasting software for the Zaurus there :
[div align=\"right\"][{POST_SNAPBACK}][/a][/div]
Have you tried Corsair
[a href=\"https://www.oesf.org/forums/index.php?showtopic=14661&hl=corsair&st=15]https://www.oesf.org/forums/index.php?showt...l=corsair&st=15[/url]
Thanks

10
Sharp ROMs / Pine Email Program With Ssl
« on: December 19, 2005, 06:50:48 am »
Quote
[I'm using the msmtp-enqueue and msmtp-runqueue scripts to use pine (thanks DrWowe) as an offline reader. [div align=\"right\"][a href=\"index.php?act=findpost&pid=106932\"][{POST_SNAPBACK}][/a][/div]

Sleepy,

Do you use the msmtp-* scripts to "compose mails offline" or as an "offline mail reader" as you mentioned above?

After some very minor tweaking I am able to compose mail with pine, offline and send immediately if online (or later by running the msmtp-runqueue script manually).

I just wanted to be sure I am not missing the "offline mail reader" component of these scripts before I delve into the mail reading side of my mail setup.

Thanks

11
Sharp ROMs / Pine Email Program With Ssl
« on: December 19, 2005, 03:47:20 am »
Quote
Let me know if there any problems
[div align=\"right\"][a href=\"index.php?act=findpost&pid=107460\"][{POST_SNAPBACK}][/a][/div]

Sleepy
The ipks install ok, thanks. I can now go ahead to implement my mail setup.

12
Sharp ROMs / Pine Email Program With Ssl
« on: December 13, 2005, 03:42:44 am »
Thanks DrWowe, sleepy, maslovsky, I shall await the ipk for fetchmail and friends.

Quote
Quote
Quote
Let me know if you would like me to post binaries for fetchmail and friends.
[div align=\"right\"][{POST_SNAPBACK}][/a][/div]

The best is to create a complete IPK packages, so that they can be easily added to the feed.

A corresponding HOWTO is available here:

[a href=\"https://oesf.org/index.php?title=IPKG_Howto]https://oesf.org/index.php?title=IPKG_Howto[/url]
[div align=\"right\"][a href=\"index.php?act=findpost&pid=106937\"][{POST_SNAPBACK}][/a][/div]

Thanks for the link. I shall attempt to package a few things this weekend
[div align=\"right\"][a href=\"index.php?act=findpost&pid=106946\"][{POST_SNAPBACK}][/a][/div]

13
Sharp ROMs / Pine Email Program With Ssl
« on: December 12, 2005, 03:39:31 pm »
Thanks for the quick response. I guess you do not require pop/smtp email

Quote
Quote
DrWowe,
Are you using sendmail?
No, I am not running amy mail daemons on my Zaurus.
[div align=\"right\"][a href=\"index.php?act=findpost&pid=106875\"][{POST_SNAPBACK}][/a][/div]

14
Sharp ROMs / Pine Email Program With Ssl
« on: December 12, 2005, 12:15:23 pm »
DrWowe,
Are you using sendmail? If so what version (links will be nice) and setup are you using.
Ensign.

Quote
I couldn't find any prebuilt versions of Pine with SSL support, so I just compiled Pine 4.64, the latest and greatest.  Now I can finally use my Zaurus to read email on my S/IMAP server.

I can post the binary if anyone wants it.  Also tell me if you want pico or the other utils that are part of the package.

I also tried the kmail program from Pi-Sync, but it choked on my inbox with over 10,000 messages.  Pine handles it much better. 
[div align=\"right\"][a href=\"index.php?act=findpost&pid=106790\"][{POST_SNAPBACK}][/a][/div]

15
Sharp ROMs / Cacko Rom 1.23 - No Ssid
« on: December 01, 2005, 02:01:47 pm »
not to worry... my mistake!

Pages: [1] 2 3 4