Displaying 2 results from an estimated 2 matches for "pauth".
Did you mean:
path
2009 Jul 03
1
Zimbra IMAP authentication - SOLVED
...of any help to anyone, I put together a small script
to produce them:
#!/bin/bash
# Copyright 2009 by John A. Sullivan III, SSI Services, LP
# This script takes a file with a list of email accounts (accountfile) and
# produces a file containing Zimbra PLAIN AUTHENTICATION passwords
# (accountfile.pauth) in the current directory.
# Thus, be sure you have read rights where you run this script.
if [ -z "${1}" ];then
echo "usage: $(basename ${0}) <accounts file name>"
exit 5
fi
read -p "What is the admin email account name? " ADMIN
echo "Than...
2008 Jul 08
12
Some more win32-security: SID.create
Hi all,
How does this look as a general approach to a SID.create method:
# Creates and initializes
def self.create(authority, *sub_authorities)
if sub_authorities.length > 8
raise ArgumentError, ''maximum of 8 subauthorities allowed''
end
authorities = Array.new(8, 0)
authorities.replace(sub_authorities)
count = authorities.select{ |e| e > 0 }.size