Re: [Slackbuilds-users] Desmume on 64-bit - optimization flag

2013-01-23 Thread J Pipkin

On 2013-01-23 09:01, Matteo Bernardini wrote:

Hi J,

I tried to adapt the line to take in account Eric's advices

SLKCFLAGS=${SLKCFLAGS:--O2}
LIBDIRSUFFIX=
[ $(uname -m) = x86_64 ]  [ ! $(echo $PATH | grep
^/usr/bin/32) ]  SLKCFLAGS=$SLKCFLAGS -fPIC LIBDIRSUFFIX=64
 [ $ARCH = i486 ] || [ $ARCH = native ] 
SLKCFLAGS=$SLKCFLAGS -march=$ARCH
[ $ARCH = i486 ] || [ $ARCH = i686 ]  SLKCFLAGS=$SLKCFLAGS
-mtune=i686

Matteo


oh, I like this idea a lot - a huge usability win to not have to edit 
the .SlackBuild for such cases. of course, since SBo's official stance 
is no support for multilib, I guess there's not much chance of this 
being acceptable... but it would be nice. also, probably want grep -q :)


On 2013-01-23 21:16, Kyle Guinn wrote:

On 1/23/13, xgiz...@slackbuilds.org xgiz...@slackbuilds.org wrote:

This topic has me curious.  Can anyone explain to me why we add -fPIC
for x86_64, or why we don't add it to the others?

-Kyle


the over-simplified answer is that it makes dynamic linking on x86_64 
possible, and that on x86 dynamic linking Just Works. if you'd like a 
more technical understanding, there are plenty of these available 
online, just google for something like fpic x86_64 or fpic amd64 or 
such.

___
SlackBuilds-users mailing list
SlackBuilds-users@slackbuilds.org
http://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users
Archives - http://lists.slackbuilds.org/pipermail/slackbuilds-users/
FAQ - http://slackbuilds.org/faq/



RE: AD Authentication + radius + foundryAP

2011-05-20 Thread Mark Pipkin
I don't like leaving things unresolved and just laying around like so
many other post that I have ran across.  I guess Alan DeKok scares them
off with the It's in plain view dumb ass attitude.  I'm sure after
answering the questions over and over again, it is about the only
response that someone can give who it just tired of the same old
questions and wants a challenge.

With that being said...

On Ubuntu 10.04 w/ updates, FreeRadius 2.1.8, Windows XP/7, and W2K AD

The wiki has a HowTo on AD
http://wiki.freeradius.org/FreeRADIUS_Active_Directory_Integration_HOWTO

At the very top of this page there is:

Updated tutorial for freeradius 2.x is at:
http://deployingradius.com/documents/configuration/active_directory.html

This is all well and good, but I jumped straight to that link.  There
seems to be some information that is left out and that is important in
the Updated tutorial. 

With all of the frustration I nuked all of FreeRadius from the server
using 'aptitude purge freeradius freeradius-common freeradius-utils'.
This cleaned up all of my changes.  Then I reinstalled FreeRadius.

From here I followed the Updated tutorial until I got to: Configuring
FreeRADIUS to use ntlm_auth for MS-CHAP.  When I reached this section,
and I had everything working, I went back to the original HowTo and read
though it. (note to self: don't just a head just because a HowTo seems
to good to be true.

The Updated tutorial doesn't let you know anything about peap,
with_ntdomain_hack, the default setting of eap, or setting up clients.
So it is not, in my opinion a complete walk though.

There is light though.  Once you I got to the point where ntlm_auth was
working for me, I started back on the wiki HowTo and went to the section
'Configuration of clients.conf'.


Set the client up.
Client foundryAP {
Ipaddr = 192.168.0.1
Secret = testing123
}

In the Configuration of radius.conf section (this parts seems more like
the 1. Config) the 'with_ntdomain_hack = yes' this was found in the
~/modules/mschap file.  You don't need 'auth-type = MS-CHAP'.

For ntlm_auth I'm using:

ntlm_auth = /usr/bin/ntlm_auth --request-nt-key
--username=%{mschap:User-Name} --challenge=%{mschap:Challenge:-00}
--nt-response=%{mschap:NT-Response:-00}
--require-membership-of=DOMAIN+group

The eap.conf section of the HowTo was spot on.  I also set the clients
up, this was pointed out to me earlier in this tread twice, so make sure
your client is setup correctly as well.

Currently everything is working.  I'm able to authenticate though radius
using Windows 2000 AD. 

Resolved.

-
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


RE: AD Authentication + radius + foundryAP

2011-05-17 Thread Mark Pipkin
  Post the debugging output into the form at:

  http://networkradius.com/freeradius.html

  And read the highlighted lines.  It should be obvious what's going
on.

Module: Instantiating attr_filter.access_reject
  attr_filter attr_filter.access_reject {
attrsfile = /etc/freeradius/attrs.access_reject

was highlighted in read. To you it might be obvious what this means.  To
me, I don't really understand it, except that later one in the debug I
get :

Using Post-Auth-Type Reject
+- entering group REJECT {...}
[attr_filter.access_reject] expand: %{User-Name} - ATL\pipkin_m

I don't know much about FreeRadius.  I have never had to work with a
radius server of any type before.  I do apologize, but while this stuff
might be obvious to someone that created it or works in radius servers
every day of the week, I am not that person.  So to me, the only obvious
thing is that I get rejected at leap, while another radius server that
is running FreeRadius 1.x on Getoo is working just find with mschapv2.

  Also read my Active Directory guide at:

http://deployingradius.com/documents/configuration/active_directory.htm
l

  It contains detailed documentation and explanations for how to get
this to work.

I did follow this how-to the first time around and it got me to this
point.  That is in my first statement in asking for help.  

-
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


RE: AD Authentication + radius + foundryAP

2011-05-17 Thread Mark Pipkin

  What does that look like to you?

Looks like it is trying to use PAP to authenticate with. Though PAP is
local only, at least from what I can tell, and there is no local
user/pass for this account.  Then it looks like it rolls to a EAP/leap
authentication method.  At this point it fails.

  Are the debug messages helpful?

If I truly understood more, then I'm sure that they would be.  That are
not as helpful for me; I have a lack of understanding at this point in
time.

  Do they accurately describe the problem, and give you hints for the
solution?

I just see the problem as not working.  I don't understand why it didn't
even attempt mschapv2 when eap default was set to peap and peap default
was set to mschapv2.

 I don't know much about FreeRadius.  I have never had to work with a
 radius server of any type before.  I do apologize, but while this
stuff
 might be obvious to someone that created it or works in radius
servers
 every day of the week, I am not that person.  So to me, the only
obvious
 thing is that I get rejected at leap, while another radius server
that
 is running FreeRadius 1.x on Getoo is working just find with
mschapv2.

  The PC is choosing LEAP, not FreeRADIUS.

I'm using Win7.  Are you telling me that the PC is the one that is
picking the security for the radius and not the Foundry Wireless AP
controller?  

  Configure the PC to use LEAP, as was suggested in *another* response
to your post.

I read that post.  I thought the he was referring to the Foundry AP
controller.  You just told me that it was the fault of the PC though.


Mark Pipkin

-
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


AD Authentication + radius + foundryAP

2011-05-16 Thread Mark Pipkin
] processing type leap
  rlm_eap_leap: Stage 2
  rlm_eap_leap: Issuing AP Challenge
  rlm_eap_leap: Successfully initiated
++[eap] returns handled
Sending Access-Challenge of id 89 to 192.168.103.10 port 32890
EAP-Message = 0x0103001c11010008765dcad2513ca14941544c5c7069706b696e5f6d
Message-Authenticator = 0x
State = 0x457c467c447f579ed7afaf432a46c660
Finished request 4.
Going to the next request
Waking up in 3.6 seconds.
rad_recv: Access-Request packet from host 192.168.103.10 port 32890, id=90, 
length=203
User-Name = ATL\\user
NAS-IP-Address = 192.168.103.10
NAS-Port = 6145
Called-Station-Id = 00-90-0B-0A-81-96:radtest
Calling-Station-Id = 00-26-C7-6F-FF-64
Framed-MTU = 900
NAS-Port-Type = Wireless-802.11
Connect-Info = CONNECT 802.11g
EAP-Message = 
0x0203002c1101001887b03ee7af25d8731fec4765958f0f4b0775fd12760ca7a341544c5c7069706b696e5f6d
State = 0x457c467c447f579ed7afaf432a46c660
Message-Authenticator = 0xcc373dbaa966a554c5a5a842877f7fed
+- entering group authorize {...}
++[preprocess] returns ok
[auth_log]  expand: 
/var/log/freeradius/radacct/%{Client-IP-Address}/auth-detail-%Y%m%d - 
/var/log/freeradius/radacct/192.168.103.10/auth-detail-20110516
[auth_log] /var/log/freeradius/radacct/%{Client-IP-Address}/auth-detail-%Y%m%d 
expands to /var/log/freeradius/radacct/192.168.103.10/auth-detail-20110516
[auth_log]  expand: %t - Mon May 16 15:28:43 2011
++[auth_log] returns ok
++[chap] returns noop
++[mschap] returns noop
[ntdomain] Looking up realm ATL for User-Name = ATL\user
[ntdomain] No such realm ATL
++[ntdomain] returns noop
[eap] EAP packet type response id 3 length 44
[eap] No EAP Start, assuming it's an on-going EAP conversation
++[eap] returns updated
++[files] returns noop
++[expiration] returns noop
++[logintime] returns noop
[pap] WARNING! No known good password found for the user.  Authentication may 
fail because of this.
++[pap] returns noop
Found Auth-Type = EAP
+- entering group authenticate {...}
[eap] Request found, released from the list
[eap] EAP/leap
[eap] processing type leap
rlm_eap_leap: No Cleartext-Password or NT-Password configured for this user
[eap] Handler failed in EAP/leap
[eap] Failed in EAP select
++[eap] returns invalid
Failed to authenticate the user.
Using Post-Auth-Type Reject
+- entering group REJECT {...}
[attr_filter.access_reject] expand: %{User-Name} - ATL\user
 attr_filter: Matched entry DEFAULT at line 11
++[attr_filter.access_reject] returns updated
Delaying reject of request 5 for 1 seconds
Going to the next request
Waking up in 0.9 seconds.
Sending delayed reject for request 5
Sending Access-Reject of id 90 to 192.168.103.10 port 32890
EAP-Message = 0x04030004
Message-Authenticator = 0x

Flame on!

Seriously though.. I'm going to keep working at this, just didn't know if 
someone would be able to help me out.

Thanks.


Mark PIpkin
Systems Administrator
Air2Web
Office:  +1 404 942 5365
E-mail:  mark.pip...@air2web.com

Mobilize your business.
Find out how at www.air2web.com
Follow us on Twitter @a2wmobile
 
This message contains privileged and confidential information.  If received in 
error, please delete immediately.


-
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html


[Google-Gadgets-API] Does gadget in sites know who the user is ?

2009-11-03 Thread George Pipkin
Hi -

   I am working in a setting where Google Sites is accessed via Single
Sign On.  Because of this,
it is awkward and inconvenient for the gadget to request a second
login. I was wondering
how a gadget embedded in a Sites page can figure out what the user's
id might be ?  Any way
for the Gadget to get access to any of the SAML attributes used to
provide the login ?


- George Pipkin
  U.Va.

--

You received this message because you are subscribed to the Google Groups 
iGoogle Developer Forum group.
To post to this group, send email to google-gadgets-...@googlegroups.com.
To unsubscribe from this group, send email to 
google-gadgets-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-gadgets-api?hl=en.




[Google Wave APIs] Permissions within a wave

2009-09-30 Thread George Pipkin

Is it possible to set certain wavlets within a wave to read/only mode
for certain users, while leaving it read/write for others ?  Is this
something that is in the pipeline for the immediate future ?

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Wave API group.
To post to this group, send email to google-wave-api@googlegroups.com
To unsubscribe from this group, send email to 
google-wave-api+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-wave-api?hl=en
-~--~~~~--~~--~--~---



Happy Birthday bAe Lincoln

2009-05-25 Thread pipkin
holomyarian.jpg___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers

RE: [IMail Forum] Web Calendaring in Outlook using IMAP

2006-10-27 Thread Mark Pipkin
No one as answered this question yet.  I'm thinking of switching to another
email server.  I would like to know if Calendar sharing can be done as if
Outlook was attached to an exchange server.  Not the current way it is done
on 8.12.  If 2006.1 suite can do this that would save me time and money as
we have already invested several years into this server and would like to
stay with it.  Please inform me if there are MAPI connectors that will allow
the web calendar to be seen in MS Outlook.

I do not like the current way of sharing calendar as people would have to
update each one.  Thank you again.



_
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mark Pipkin
Sent: Thursday, October 26, 2006 9:42 AM
To: Imail_Forum@list.ipswitch.com
Subject: [IMail Forum] Web Calendaring in Outlook using IMAP

Is it possible to have the Web calendar displayed in MS Outlook while
connecting via IMAP.  I would really like for the Outlook generated calendar
events to be accepted by the used and posted to the web calendar.  I'm
running version 8.21.  If an upgrade will help I will do that.  Just need
some direction here.

Thank you for your help.

Mark Pipkin
Kauffman Tire
IT Administrator
[EMAIL PROTECTED]
 

attachment: winmail.dat

[IMail Forum] Web Calendaring in Outlook using IMAP

2006-10-26 Thread Mark Pipkin
Is it possible to have the Web calendar displayed in MS Outlook while
connecting via IMAP.  I would really like for the Outlook generated calendar
events to be accepted by the used and posted to the web calendar.  I'm
running version 8.21.  If an upgrade will help I will do that.  Just need
some direction here.

Thank you for your help.

Mark Pipkin
Kauffman Tire
IT Administrator
[EMAIL PROTECTED]
 

attachment: winmail.dat

RE: [IMail Forum] SMTP Exploit Scanning Going on NOW

2006-10-26 Thread Mark Pipkin








So those that have been effected by this
are they behind a SMTP firewall and still get hit or are these servers SMTP
live to the internet?











From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On
Behalf Of Korey Verlsteffen
Sent: Thursday, October 26, 2006
11:35 AM
To: Imail_Forum@list.ipswitch.com
Subject: [IMail Forum] SMTP
Exploit Scanning Going on NOW







Heads up everyone.My IDS systemsare
reportingheavy scanning for the IMail SMTP exploit. 











http://www.juniper.net/security/auto/vulnerabilities/vuln3414.html

















Sincerely,











Korey Verlsteffen
Network Administrator
WebStream Internet Solutions











[EMAIL PROTECTED]
http://www.webstream.net










[IMail Forum] Upgrading...

2006-08-14 Thread Mark Pipkin
I'm currently running an older version of ICS.  8.21 I believe it is.  I was
wondering if there were problems that I would face with an in-place upgrade.
I can download Ipswitch Collaboration Suite Standard 2.02, which seems to be
the latest I also con download 2006.  If there are problem that could occure
please let me know.  I'm looking at doing an in-place upgrade tonight.  

Thank you,

Mark Pipkin
Kauffman Tire
IT Administrator
[EMAIL PROTECTED]
 

attachment: winmail.dat

RE: [IMail Forum] barracuda and the like

2006-06-16 Thread Mark Pipkin
We love our Astaro.  It is a Multi layered appliance.  Firewall, Spam
firewall, virus scanner, proxy, with 8 ports.  So you can DMZ and bridge
ports togeather.  We have not had one issue out of the device.  It uses the
Barracuda email filters according to them.  We quarintine about 1k emails
everyday that are spam, have no idea how man get blackholed though.  I do
know we dropped our network traffic by about 3% when we installed it.

It is also sitting behind a Pix.  So there are 2 firewalls in place and no
slowdowns with gigabit ports.

Mark 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matrosity Hosting
Sent: Thursday, June 15, 2006 5:18 PM
To: Imail_Forum@list.ipswitch.com
Subject: [IMail Forum] barracuda and the like

I'm looking to front end our imail server with an appliance rather than
software and wondered what anyone's experience has been with any barracuda
type appliance?


__ NOD32 1.1603 (20060616) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com


To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


Re: FW: SSH/SFTP rc problem in Solaris.

2006-05-08 Thread Jacob Pipkin
The second ls -l command successfully completes. Therefore the return code 
is zero. 

   We have a SSH return code problem when we use SSH in batch in Solaris.
   We haven't this problem on RedHat.
  
   bash-2.05$ cat a.sftp
   ls -l
   pwd
   get b.txt
   ls -l
   bash-2.05$ sftp -b a.sftp scnsys11
   Connecting to scnsys11...
   Password:
   sftp ls -l
   drwxr-xr-x0 9108 10512 Apr 21 11:15 .
   drwxr-xr-x0 01 512 Apr  3 14:23 ..
   -rw---0 9108 10   2387 Apr 21 11:18 .bash_history
   -rw---0 9108 10240 Mar 28 16:19 .sh_history
   drwx--0 9108 10512 Mar 22 17:11 .ssh
   drwx--0 9108 10512 Mar 22 16:00 .ssh2
   -rwxrwxrwx0 9108 10 26 Mar 29 15:22 a.sftp
   -rwxrwxrwx0 9108 10  0 Mar 28 15:28 a.txt
   -rw---0 9108 101021424 Mar 22 17:07 core
   sftp pwd
   Remote working directory: /export/home/huysego
   sftp get b.txt
   Couldn't stat remote file: No such file or directory File
   /export/home/huysego/b.txt not found.
   sftp ls -l
   drwxr-xr-x0 9108 10512 Apr 21 11:15 .
   drwxr-xr-x0 01 512 Apr  3 14:23 ..
   -rw---0 9108 10   2387 Apr 21 11:18 .bash_history
   -rw---0 9108 10240 Mar 28 16:19 .sh_history
   drwx--0 9108 10512 Mar 22 17:11 .ssh
   drwx--0 9108 10512 Mar 22 16:00 .ssh2
   -rwxrwxrwx0 9108 10 26 Mar 29 15:22 a.sftp
   -rwxrwxrwx0 9108 10  0 Mar 28 15:28 a.txt
   -rw---0 9108 101021424 Mar 22 17:07 core
   sftp
   bash-2.05$ echo $?
   0

 

   
   ** As you can see in this example, sftp gives a rc = 0. If you try
   the

 same

   on RedHat, you will receive a rc not equal to 0.


RE: [IMail Forum] Useradmin.asp

2005-12-13 Thread Mark Pipkin
Well I don't guess I will be upgrading.  It appears with even the clean
install that I can get this thing working correctly.  I have loved other
Imail versions.  But don't seem to beable to get this one to work
correctly... 3 reinstalls.  That is enough for me to just stay where I'm at
and just patch it... When contract runs out find another mail server.
Doesn't seem like anyone else ran into this issue so maybe it is just
me...Oh well. 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mark Pipkin
Sent: Friday, December 09, 2005 10:05 AM
To: IMail_Forum@list.ipswitch.com
Subject: [IMail Forum] Useradmin.asp

Ok I have tried many things and I'm stuck with this.

When running mozillia browser I get
*
Microsoft JScript runtime  error '800a138f'

'oDomain.UserDatabaseFlags' is null or not an object

/IAdmin/IMail/UserAdmin.asp, line 34
*

When I try to manage users

In IE I get 


 The page cannot be displayed
There is a problem with the page you are trying to reach and it cannot be
displayed. 




Please try the following:

Open the blackwidow.kauffman.com:2055 home page, and then look for links to
the information you want. 
Click the  Refresh button, or try again later.

Click  Search to look for information on the Internet. 
You can also see a list of related sites. 




HTTP 500 - Internal server error
Internet Explorer  



Any else ran into this problem and has been able to fix it.

The webserver has not ben moved into production as of yet.  I went ahead and
just did the install from scrach.

Thanks for any help 

Pip


To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


__ NOD32 1.1316 (20051208) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com



To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


[IMail Forum] Useradmin.asp

2005-12-09 Thread Mark Pipkin
Ok I have tried many things and I'm stuck with this.

When running mozillia browser I get 
*
Microsoft JScript runtime  error '800a138f'

'oDomain.UserDatabaseFlags' is null or not an object

/IAdmin/IMail/UserAdmin.asp, line 34
*

When I try to manage users

In IE I get 


 The page cannot be displayed 
There is a problem with the page you are trying to reach and it cannot be
displayed. 




Please try the following:

Open the blackwidow.kauffman.com:2055 home page, and then look for links to
the information you want. 
Click the  Refresh button, or try again later.

Click  Search to look for information on the Internet. 
You can also see a list of related sites. 




HTTP 500 - Internal server error 
Internet Explorer  



Any else ran into this problem and has been able to fix it.

The webserver has not ben moved into production as of yet.  I went ahead and
just did the install from scrach.

Thanks for any help 

Pip


To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


RE: [IMail Forum] Useradmin.asp

2005-12-09 Thread Mark Pipkin
What ver of java is the server supposed to be running?  Or client?? 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mark Pipkin
Sent: Friday, December 09, 2005 10:05 AM
To: IMail_Forum@list.ipswitch.com
Subject: [IMail Forum] Useradmin.asp

Ok I have tried many things and I'm stuck with this.

When running mozillia browser I get
*
Microsoft JScript runtime  error '800a138f'

'oDomain.UserDatabaseFlags' is null or not an object

/IAdmin/IMail/UserAdmin.asp, line 34
*

When I try to manage users

In IE I get 


 The page cannot be displayed
There is a problem with the page you are trying to reach and it cannot be
displayed. 




Please try the following:

Open the blackwidow.kauffman.com:2055 home page, and then look for links to
the information you want. 
Click the  Refresh button, or try again later.

Click  Search to look for information on the Internet. 
You can also see a list of related sites. 




HTTP 500 - Internal server error
Internet Explorer  



Any else ran into this problem and has been able to fix it.

The webserver has not ben moved into production as of yet.  I went ahead and
just did the install from scrach.

Thanks for any help 

Pip


To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


__ NOD32 1.1316 (20051208) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com



To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


RE: [IMail Forum] Useradmin.asp

2005-12-09 Thread Mark Pipkin
One other thing that seems strange.  If I'm on the server as
http://localhost:2055/iadmin I don't see to have a problem other than
sometime the page doesn't load all the way and I have to hit refresh that is
no big deal.  But if on the same server I do http://my.mailserver.com/iadmin
then I get the same errors that I do from another computer.  

I'm not a big administrator of IIS.  Most I have had to do is set up
redirects and different things of that nature. If there is something that I
need to do different let me know.

Pip

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mark Pipkin
Sent: Friday, December 09, 2005 10:05 AM
To: IMail_Forum@list.ipswitch.com
Subject: [IMail Forum] Useradmin.asp

Ok I have tried many things and I'm stuck with this.

When running mozillia browser I get
*
Microsoft JScript runtime  error '800a138f'

'oDomain.UserDatabaseFlags' is null or not an object

/IAdmin/IMail/UserAdmin.asp, line 34
*

When I try to manage users

In IE I get 


 The page cannot be displayed
There is a problem with the page you are trying to reach and it cannot be
displayed. 




Please try the following:

Open the blackwidow.kauffman.com:2055 home page, and then look for links to
the information you want. 
Click the  Refresh button, or try again later.

Click  Search to look for information on the Internet. 
You can also see a list of related sites. 




HTTP 500 - Internal server error
Internet Explorer  



Any else ran into this problem and has been able to fix it.

The webserver has not ben moved into production as of yet.  I went ahead and
just did the install from scrach.

Thanks for any help 

Pip


To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


__ NOD32 1.1316 (20051208) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com



To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


RE: [IMail Forum] Useradmin.asp

2005-12-09 Thread Mark Pipkin
Yes I can ping the server.  I can get to it from another computer .. My only
problem is with the user manager and the java sctipt that runs on that .. I
also have a java script error for trying to get to the IM portion of the
sever... I can get to http://my.server.com:2055/IAdmin/index.asp where it
list the 2 selections Imail and IM.  When clicking on Imail Server I am able
to see the other selections but I get an error when I click on the users...
And when navigating though the server I see 

Error Message
The Domain does not exist

Error Message
The Domain does not exist

At random.. Sometimes it is there and some times not.  Again this is a clean
install of 2006 on a windows 2000 server running IIS.  If I need to do a
complete reinstall of the server because I missed something that is fine.  I
just need to know where to go from here... I don't how ever care to
reinstall the server and then have it not work after the reinstall.

Again the error I get when click on Manage Users

Microsoft JScript runtime  error '800a138f'

'oDomain.UserDatabaseFlags' is null or not an object

/IAdmin/IMail/UserAdmin.asp, line 34

And when clicking on alais Administration

error '8004022c'

/IAdmin/IMail/AliasAdmin.asp, line 12

And then on click IM server

IIM Server

Microsoft JScript runtime error '800a0005'

Invalid procedure call or argument

/IAdmin/iim/index.asp, line 65

I hope this help a bit more.  

Well just tested it on the http://localhost... And it is not working now...
Bah.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mark Pipkin
Sent: Friday, December 09, 2005 10:05 AM
To: IMail_Forum@list.ipswitch.com
Subject: [IMail Forum] Useradmin.asp

Ok I have tried many things and I'm stuck with this.

When running mozillia browser I get
*
Microsoft JScript runtime  error '800a138f'

'oDomain.UserDatabaseFlags' is null or not an object

/IAdmin/IMail/UserAdmin.asp, line 34
*

When I try to manage users

In IE I get 


 The page cannot be displayed
There is a problem with the page you are trying to reach and it cannot be
displayed. 




Please try the following:

Open the blackwidow.kauffman.com:2055 home page, and then look for links to
the information you want. 
Click the  Refresh button, or try again later.

Click  Search to look for information on the Internet. 
You can also see a list of related sites. 




HTTP 500 - Internal server error
Internet Explorer  



Any else ran into this problem and has been able to fix it.

The webserver has not ben moved into production as of yet.  I went ahead and
just did the install from scrach.

Thanks for any help 

Pip


To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


__ NOD32 1.1316 (20051208) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com



To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


[IMail Forum] Please help me deside

2005-12-05 Thread Mark Pipkin



I am 
getting the feeling from everything that i'm reading that i will no longer 
beable to run Imail and my web sites on the same server. I know I know 
kinda crazy runing 4 websites and 1 email server from the same server. I 
getting to the point where i'm afraid that if i do up grade that my b2b websites 
will crash. so i will have to make my test server a production server. 


Most 
people have a stand alone email server. I'm not that lucky as we cut cost 
where we can and putting imail on a stand alone server just doesn't make much 
sence until you get scard that by doing so a cluster of things can happen. 
so a few questions for you brave souls out there.

1) 
anyone running b2b sites and Imail 2006(upgraded from 8.21) on the same server 
and if so what problems have you had to work around.
2) 
would it be easier for me to just install Imail 2006 on a stand alone computer 
with a clean install of everything and migrate the user accounts 
over?
3) is 
there an easy way to migrate from 8.21 to a stand alone 2006 server. being 
that it is a complete rebuild are the registry keys the same, can i just move 
like i normally do? or is there a utility that will help me with 
this.

I plan 
on trying to get this done tonight. currently i'm moving my backup server 
to another server to make free a server for imail. but if there are little 
dangers of me messing up the current iis config for my b2b websites then i may 
just upgrade where it is. 

thank 
you

Pip


RE: [IMail Forum] IMail is standalone again???

2005-11-30 Thread Mark Pipkin
They never really stopped if from being stand alone.  ICS is a package deal.
You are still have have been able to just get the stand alone copy of the
imail server.  I know what you are talking about and I went though it with
their sales force over and over again.  Before or shortly after the release
of ICS they allowed you to just get the stand alone server.  I don't rember
them not selling the ICS alone as to many people complained about not
wanting the ICS package just the stand alon mail server.

Pip 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jeffery R. Rehm
Sent: Wednesday, November 30, 2005 1:10 PM
To: IMail_Forum@list.ipswitch.com
Subject: [IMail Forum] IMail is standalone again???

Back when Ipswitch made the less than wise decision suspend IMail as a
standalone product, I swore them off and never really spent much time
worrying about what they offered.  As a matter of fact, I sort of forgot
about them.  I see they now are offering it again?  Could this be true?

To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


__ NOD32 1.1308 (20051129) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com



To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


RE: Re[2]: [IMail Forum] Is there a way to associate a domain name with an IP Address

2005-10-18 Thread Mark Pipkin
David:

I believe that is what Sandy is refuring to.  If you run an inhouse DNS
server you can also stacit an entry into the server.  The file for deiting
is the LMHOST or HOST.  I believe they are found in the
winnt\system32\drivers\etc or just do a search for the file.  If you are
running windows 2k you will want to edit the file and then do an import from
then WINs tab in your network advanced setting under tcp/ip

Pip

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of David Johnson
Sent: Monday, September 26, 2005 8:16 AM
To: imail_forum@list.ipswitch.com
Subject: Re: Re[2]: [IMail Forum] Is there a way to associate a domain name
with an IP Address

Hi Sanford

Just for clarification, are you refering to the host file in the WINNT
directory or are your referring to one that is used by IMail?

Thanks...

David J.


- Original Message -
From: Sanford Whiteman [EMAIL PROTECTED]
To: David Johnson IMail_Forum@list.ipswitch.com
Sent: Friday, September 23, 2005 6:42 PM
Subject: Re[2]: [IMail Forum] Is there a way to associate a domain name with
an IP Address


  Is  there  a  way  to  associate a domain name with an IP address in
  IMail so that we can forward messages?

 Add  the domain name and the IP address of its MX to the HOSTS file as
 a standard entry:

  1.2.3.4 example.com

 --Sandy


 
 Sanford Whiteman, Chief Technologist
 Broadleaf Systems, a division of
 Cypress Integrated Systems, Inc.
 e-mail: [EMAIL PROTECTED]

 SpamAssassin plugs into Declude!

http://www.imprimia.com/products/software/freeutils/SPAMC32/download/release
/

 Defuse Dictionary Attacks: Turn Exchange or IMail mailboxes into IMail
Aliases!

http://www.imprimia.com/products/software/freeutils/exchange2aliases/downloa
d/release/

http://www.imprimia.com/products/software/freeutils/ldap2aliases/download/re
lease/


 To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
 List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
 Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/



To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


__ NOD32 1.1232 (20050925) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com



To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


[IMail Forum] Imap and Verizon servers for those that are connecting PDAs.

2005-09-19 Thread Mark Pipkin
I'm running into a bit of an issue trying to get imap and
wirelesssync.vzw.com to sync deleted items.

From my understanding of this imail imap server  sync to verizon via imap 
then sync to PDA..that all work fine for getting email sto the PDA.  When I
delete an email on the PDA it syncs to the verizon website.  That works
fine.  I seem to be having trouble with the connection back to the imail
server and it syncing there.  Delete from pda  delete form verizon server 
broken deleting from imail server.

Ifanyone has ever ran into any of this before please let me know.  I have
about 10 days left on eval of this device to make sure it will work for what
we would like for it to... 

Thank you


To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


RE: [IMail Forum] Collaboration IM Issue

2005-06-23 Thread Mark Pipkin








Try using [EMAIL PROTECTED]
The users of my virtual domain on the mail server have to do that. Primary
works fine with just username











From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On
Behalf Of Edward Ford
Sent: Wednesday, June 15, 2005
4:20 PM
To: IMail_Forum@list.ipswitch.com
Subject: [IMail Forum]
Collaboration IM Issue





I installed Imail locally on my
workstation to start playing with it and it does work fine. I am using Imail
authentication. I keep getting invalid account name or password. I am also
running the Im server and client on the same computer. I go through the settings
of the IM server and do not see anything obviously wrong. Any suggestions..



Thank You;










RE: [IMail Forum] Corrupted emails with Attachments even after hotfix 2

2005-06-13 Thread Mark Pipkin








If you are using in-house DNS you can set
up your email server address and DNS forwarding for internet traffic. 



In other words



DNS server has A record domain.com

An MX record of mail.domain.com  10.x.x.x (or what ever
your internal email server ip is)

Properties of your DNS server will allow
you to forward all traffic that is not on the local LAN out to the router and
through the fire wall.



We are set up with a router firewall
router because of our WAN traffic (all point to point frames) Everything has
worked fine after the patch, no reported issues, and we did a lot of testing
after the patch.



You may want to just do a complete
reinstall. Back up your mailboxes and uninstall Imail and reinstall it. Dont
for get about your registry either.















From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On
Behalf Of L. Bhandari
Sent: Monday, June 13, 2005 2:00
PM
To: IMail_Forum@list.ipswitch.com
Subject: RE: [IMail Forum]
Corrupted emails with Attachments even after hotfix 2







This is how it was explained to me (thanks
Sandy!):






In a well-designed network,
packets between hosts on the same subnet
do not get processed by a router. But you can accidentally break this
rule: if your internal clients are using a hostname
that their DNS
resolves to an external IP, their
traffic will indeed go to the
router--but then the router steers it back to the local network via a
NAT rule, and you have the very undesirable loopback NAT
situation.











~Laura





-Original Message-
From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]On
Behalf Of Flint
Sent: Monday, June 13, 2005 12:36
PM
To: IMail_Forum@list.ipswitch.com
Subject: Re: [IMail Forum]
Corrupted emails with Attachments even after hotfix 2



Laura,











Thanks for the response.. What is
Looping? Has anyone else had that problem? It happened
occasionally before but it seems since 8.2, it has clearly gotten much
worse.. 











Anton







- Original Message - 





From: L.
Bhandari 





To: IMail_Forum@list.ipswitch.com 





Sent: Monday, June 13,
2005 12:30 PM





Subject: RE: [IMail Forum]
Corrupted emails with Attachments even after hotfix 2











I had that problem a looong time ago but
with 8.12. Everything was fine via webmail but not when it got popped into our
Outlook (images, word docs, pdf files - everything - would get corrupted). It
turned out that we needed to change our pop/smtp settings in Outlookto
the machine's network IP address rather than mail.mydomain.com - we were
looping and evidently that was the problem. Ever since I have made that change,
I have not had any problems. 











HTH.





~Laura











-Original Message-
From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]On
Behalf Of Flint
Sent: Monday, June 13, 2005 12:16
PM
To: IMail_Forum@list.ipswitch.com
Subject: [IMail Forum] Corrupted
emails with Attachments even after hotfix 2



Good Monday morning to you all,











I was hoping to see improvements with corrupted emails that
have attachments after running hotfix 2 on 8.2 but It almost seems that it is
even worse. Is anyone else seeing this even after running 8.2 Hotfix 2?

Anton
















RE: [IMail Forum] Web service crashing - IMail 8.15 HF 2

2005-06-13 Thread Mark Pipkin








Im not sure about this or not but
check and see if SMTP for windows is installed if you installed IIS. You
can either uninstall it in add/remove programs or just disable it in IIS or
stop the service from running in services. 



You only want the one for Imail running.



Just a thought not sure if it will fix the
problem











From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On
Behalf Of Scott Wolf
Sent: Monday, June 13, 2005 12:55
PM
To: IMail_Forum@list.ipswitch.com
Subject: RE: [IMail Forum] Web
service crashing - IMail 8.15 HF 2





I apologize, the error message I'm getting
for SMTPD32.exe is:



Application popup: smtpd32.exe -
Application Error : The application failed to initialize properly (0xc142).
Click on OK to terminate the application. 



-Scott









From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On
Behalf Of Scott Wolf
Sent: Monday, June 13, 2005 11:53
AM
To: imail_forum@list.ipswitch.com
Subject: [IMail Forum] Web service
crashing - IMail 8.15 HF 2



Every time I start the IMail web service, it crashes again
almost immediately. The only error message that I can find in my Event
Log is:











The IMail Web Service service terminated
unexpectedly. It has done this 3 time(s). The following corrective
action will be taken in 0 milliseconds: No action











I'm also getting errors with SMTPD32.exe that say:











The IMail Web Service service terminated
unexpectedly. It has done this 3 time(s). The following corrective
action will be taken in 0 milliseconds: No action











which is immediately followed by about 800 copies of
SMTPD32.exe becoming memory resident. Has anyone encountered something
like this? Any help would be appreciated. Thanks!









ScottWolf|
Network Administrator | GravityFree 
1960 Stickney Point Road | Second Floor
Sarasota | FL | 34231 | 800.207.4431
941.927.7674|f 941.923.5429
www.GravityFree.com

2003 TECHNOLOGY COMPANY OF THE YEAR - Sarasota County Committee for Economic Development
2001 YOUNG BUSINESS OF THE YEAR - Greater Sarasota Chamber of Commerce

*Internet Email Confidentiality
Footer***

Privileged/Confidential
Information may be contained in this message. If you are not the addressee
indicated in this message (or responsible for delivery of the message to such
person), you may not copy or deliver this message to anyone. In such case, you
should destroy this message, and notify us immediately. If you or your employer
does not consent to Internet email messages of this kind, please advise us
immediately. Opinions, conclusions and other information expressed in this
message are not given or endorsed by my firm or employer unless otherwise indicated
by an authorized representative independent of this message.














RE: [IMail Forum] OT: Free or extremly cheap desktop AV software

2005-05-20 Thread Mark Pipkin








I would use NOD32. We have been
running a test on our TS server. Why are we planning on switching from
Symantec? Simple no over head. Between all the major AVs it was NOD32
or a Russian AV that I cant remember the name off the top of my head.
Symantec scans network drives and for 50+ users on a TS server all on the same
drive and 50+ connections from users + Symantec trying to scan those 50+
connections that is a lot of traffic that there is not a need for. It is
slow when it is scanning files, and just other things. The price is nice
at 17$ per client if buying 50 server/workstations with a 2 year agreement.












From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On
Behalf Of Travis Rabe
Sent: Monday, May 09, 2005 1:11 PM
To: IMail_Forum@list.ipswitch.com
Subject: [IMail Forum] OT: Free or
extremly cheap desktop AV software





Does anyone know of free or extremely cheap Windows Desktop
Software. I checked with CLAM Av, but you need to have a server running
in order for the Windows version to work.



Any ideas?



Travis










RE: [IMail Forum] Worm.SOBER.P- Got it.

2005-05-04 Thread Mark Pipkin
Let me say one thing here.  We got hit with it.  If we were blocking .zip
attachments then we would have not gotten infected, well at least it would
have been rare.

Symantec is the only company that posted that it killed there live update
files, so that the virus couldn't be found with new dat files.

So to stop the Virus on my server getting spammed to the people in and out
of my office.  I blocked .zip attachments.  In the logs it will tell you
what IP the mail is coming from go to that computer and run the stinger.  

Problem fixed.

Users are stupid we all know that and it seems more so in the tire business
that if it doesn't have a tread on it with rubber and a steal belt that they
don't know how to sell/work/comprehend it.  No offence to the gear heads out
there.

Pip

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Scott Erwin
Sent: Tuesday, May 03, 2005 11:19 AM
To: IMail_Forum@list.ipswitch.com
Subject: Re: [IMail Forum] Worm.SOBER.P- Got it.

Looks like all the antivirus software in place updated after the 
infection had taken place. I run the Clam, F-prot and Trend updates at 
6:30am every day. I guess I'll have to do it more than once a day now. 
But even scanning the infected systems with Trend Officescan didn't turn 
up anything. However, when I actually searched for the files in Windows 
Exporer, the real time scan picked them up. Trend used to be my rock, 
now I'm not so sure.

Thanks,
Scott


Doug Traylor wrote:

200.0.0.231 is the lan address of the mail server.
200.0.0.54 is a client on the lan. There are two other client machines
that appear to be doing all the sending. Trend does not detect any virus
on those systems.

I have No Mail Relay selected and SMTP auth is required. What'g going on
here?




My guess is your client machine(s) is/are infected.  Simply pull them
off the lan and see if the problem goes away.

Try another desktop cleaner other than Trend.  They are very slow to
react to new viruses.  I use them for my gateway and I have had to
take extraordinary steps to block attachments due to Trend missing
them until they get an update out there.

I use Kaspersky to clean systems that are infected with a new virus. 
They seem to be by far the fastest to develop solutions to the new
viruses.  They have a free trial for desktop computers.

Good luck,

Doug Traylor

To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/
  


To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/




To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


RE: [IMail Forum] Null Headers, Null senders, Null bodies.

2005-01-31 Thread Mark Pipkin
Thank you.  Just got done updating VS with an exclusion list for Imail dir
on the server.  Will see if that helps.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of R. Scott Perry
Sent: Thursday, January 27, 2005 2:46 PM
To: IMail_Forum@list.ipswitch.com
Subject: Re: [IMail Forum] Null Headers, Null senders, Null bodies. 


Null Headers, Null senders, Null bodies, or just entire blank 
messages.  How can I stop them from getting through Imail?

In most cases, these are due to AV programs being run improperly on the 
IMail server.  If you have an on-access virus scanner running on the IMail 
server, it must be set not to scan the \IMail directory or subdirectories.

-Scott
---
Declude JunkMail: The advanced anti-spam solution for IMail mailservers 
since 2000.
Declude Virus: Ultra reliable virus detection and the leader in mailserver 
vulnerability detection.
Find out what you've been missing: Ask for a free 30-day evaluation.



This outgoing message is guaranteed to be authentic by Message Level users.
Guarantee the authenticity of your email @ http://www.messagelevel.com.
---
[This E-mail was scanned for viruses by Declude Virus
(http://www.declude.com)]


To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


[IMail Forum] Null Headers, Null senders, Null bodies.

2005-01-27 Thread Mark Pipkin








Null Headers, Null senders, Null bodies,
or just entire blank messages. How can I stop them from getting through
Imail?










[IMail Forum] Slow to deliver mail

2004-09-15 Thread Mark Pipkin
Title: Nachricht








I have Imail servers 8.12
dont feel like upgrading with everything going on around the office
right now. The question that I have is what takes email so long to deliver. I
can cut black list off and filters off and it still takes 5 to 10 minutes sometimes
longer to deliver a message [EMAIL PROTECTED]
 [EMAIL PROTECTED] . This doesnt
make any sense to me. I have a dual P3 1.0 GHz with 1gig of ram. The ports
are open on the pix fire wall for 110 and 25. Time response should be around 1
to 2 min at most if not instant. If anyone could help me work on this
problem I would be most greatful.



Mark








RE: [IMail Forum] List working?

2004-09-10 Thread Mark Pipkin
I'm going to burn it down

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Eric Shanbrom
[Ipswitch]
Sent: Friday, September 03, 2004 1:22 PM
To: [EMAIL PROTECTED]
Subject: Re: [IMail Forum] List working?

LOL

- Original Message - 
From: Ron Hornbaker [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, September 03, 2004 12:47 PM
Subject: RE: [IMail Forum] List working?


  The memo. The memo.
 
  How come I never get the memo?
 
  I feel so, so so...

 Let me just get that from ya (picks up the stapler). Great. So if you
 could get to that as soon as possible, that would be terrific. Have a
 nice lunch, Milton.

 (courtesy of http://68k.org/~interiot/scripts/office_space.html)

 -R


 To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
 List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
 Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/



To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


RE: [IMail Forum] Loop back problem

2004-08-23 Thread Mark Pipkin
Thank you Scott.  I will check it out next time it occurs.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of R. Scott Perry
Sent: Saturday, August 21, 2004 1:42 PM
To: [EMAIL PROTECTED]
Subject: RE: [IMail Forum] Loop back problem


I have a user that is experiencing what some call a loop back issue.  The
user receives email with out a problem and then one day he gets the same
email over and over again.  Anywhere between 20 to 100's of the same email
delivered at the same time of day.

The first thing to do is check the headers of several of the repeated 
E-mails.  The Received: headers will typically help pinpoint where the mail 
loop is occurring.  For example, if you see Received: from Machine1... 
followed by Received: from Machine2... and then Received: from 
Machine1..., the loop is occurring between Machine1 and Machine2.

If that doesn't get anywhere, and/or you are convinced that the issue is at 
the IMail server, you can check the IMail SMTP log files to see how many 
times the E-mail was received, and how many times it was delivered/sent.

-Scott
---
Declude JunkMail: The advanced anti-spam solution for IMail mailservers 
since 2000.
Declude Virus: Ultra reliable virus detection and the leader in mailserver 
vulnerability detection.
Find out what you've been missing: Ask for a free 30-day evaluation.

---
[This E-mail was scanned for viruses by Declude Virus
(http://www.declude.com)]


To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


RE: [IMail Forum] Move IMail from NT 4 to Win2k

2004-08-17 Thread Mark Pipkin
I have moved iMail several times since I have started with this company.
Other than Imail's instructions there should not be a hitch.  Make sure that
you back up the registry and such.  As long as you put domains and virtual
domains in the same place on the same drive letter you should not have a
problem. If you do change drive letters then just make the correct reg edits
and you should be good to go.  

Had to move once because of upgrage from 5 to 8.X because it was sitting on
a NT4.0 server then moved again when I got my web/email server up and
running.

Wodihor

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Lukas Kaminski
[MDS Internet]
Sent: Tuesday, August 17, 2004 11:18 AM
To: [EMAIL PROTECTED]
Subject: [IMail Forum] Move IMail from NT 4 to Win2k

I'm preparing to move IMail Server v8.05 from NT 4to a win2k server.  I
assume the Ipswitch instructions
(http://support.ipswitch.com/kb/IM-19980116-JB11.htm) are all that's needed.


In addition, I will be moving Declude JunkMail/Virus Pro.  I expect this
part to go over very smoothly.

Is there anything I should be aware of that's not mentioned in the Ipswitch
instructions?  Has anyone had any problems?

Thanks,
Lukasz




To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


RE: [IMail Forum] Loop back problem

2004-08-17 Thread Mark Pipkin
I noticed that all the other emails where getting answered.  I assume that
no one knows of a solution to fix the problem that I am having with an email
being in a loop in the server or the other problem posted about a similar
problem with email being poped over and over again and not deleting itself
from the server... if any one could help me out on this one would be great.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mark Pipkin
Sent: Monday, August 16, 2004 4:43 PM
To: [EMAIL PROTECTED]
Subject: [IMail Forum] Loop back problem

I have a user that is experiencing what some call a loop back issue.  The
user receives email with out a problem and then one day he gets the same
email over and over again.  Anywhere between 20 to 100's of the same email
delivered at the same time of day.

Any idea what this might be I'm using Imail 8.12


To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


[IMail Forum] Loop back problem

2004-08-16 Thread Mark Pipkin
I have a user that is experiencing what some call a loop back issue.  The
user receives email with out a problem and then one day he gets the same
email over and over again.  Anywhere between 20 to 100's of the same email
delivered at the same time of day.

Any idea what this might be I'm using Imail 8.12


To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html
List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/


[newbie] Registered Linux User No.293302

2003-10-05 Thread M J Pipkin
Please do not send me any more newbie spam.  As a registered user, Anne
Wilson, perhaps you would be so kind as to ensure my privacy is not further
invaded with unwanted Mandrake Newbie mail.

I would appreciate some professionalism in your honouring an individual's
right to be excluded from receiving unwanted mail (spam).

- Original Message -
From: Anne Wilson 
To: [EMAIL PROTECTED]
Sent: Saturday, October 04, 2003 2:16 AM
Subject: Re: M J Pipkin [Fwd: Re: [newbie] Given Up (was Who uses AC97?)]


 On Friday 03 Oct 2003 9:15 pm, Heather/Femme wrote:
  On Fri, 03 Oct 2003 11:24:32 +0100
  Margot [EMAIL PROTECTED] wrote:
  Snark!
 
   I doubt if they will affect the list archives - although mine
   were diverted by mozilla filter into my newbie list folder, I
   think that was because they had [newbie] as part of the subject
   line - the messages were addressed to my email address, not to
   the list.
  
   Margot
 
  sylpheed has an option in its filters DO NOT RECEIVE from server
  essentially...won't even d/l the thing.
 
 One possible problem there is if you use a spam filtering proxy.
 Since sylpheed would be pulling from the proxy, the spam would remain
 there, and would build up.

 Anne
 --
 Registered Linux User No.293302
 Have you visited http://twiki.mdklinuxfaq.org yet?









Want to buy your Pack or Services from MandrakeSoft?
Go to http://www.mandrakestore.com




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


RE: [newbie] Loosing Chinese users?

2003-09-26 Thread Pipkin
Please remove me from your mailing list.  This is Spam and an invasion of my
privacy.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Miark
Sent: Wednesday, September 24, 2003 11:10 AM
To: [EMAIL PROTECTED]
Subject: Re: [newbie] Loosing Chinese users?

On Thu, 25 Sep 2003 00:10:43 +0800, Anguo [EMAIL PROTECTED] wrote:


 This was posted by jeff at MandrakeClub. Does anyone knows
 more about it???

The English version of Red Flag sucked--we're even. ;-)

Miark



 
 If this is the last one before 9.2 final, I am sure Mandrake
 will lose most users from Taiwan and Hong Kong. They will
 switch to RedHat for much better Chinese support.

  9.2rc1 and rc2 are not able to show Traditional Chinese at
 all because only Simplied Chinese fonts are installed. I
 have already filed this issue in Bugzilla and I hope there
 is another release candidate to fix this.

  About 2 years ago, Mandrake was much better in Chinese
 support in comparison with other distributions. However,
 RedHat have surpassed Mandrake in Chinese support nowadays
 that has made many Traditional Chinese user switch to
 RedHat. Less and less people have took part in forum on
 Mandrake. The prospect of Mandrake among Chinese Linux
 market may be not optimistic.


 --
   In the news: UK Government backs open source
 Open-source software will help avoid lock-in to proprietary
 IT products and technologies says the government, in its
 long-awaited policy document
   Read more:
 http://news.zdnet.co.uk/story/0,,t269-s2119628,00.html





Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


RE: [newbie] Looking for some advice

2003-07-05 Thread Pipkin
Hi there

Am running dual boot (Mandrake 9.0/WinME)

However, had similar experience in Windows approx 5 days ago.  However,
noticed that although system folders' files (eg first Control Panel; then on
reboot primary hard drive, etc...) showed blank pages, the task bar showed
appropriate number of files.

Suspect virus.  Reinstalled ME operating system files (an time-consuming
reconfiguring of applications) but problem has not recurred and, touch wood,
not in 9.0

Regards

Marion


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Aron Smith
Sent: 05 July 2003 05:44
To: [EMAIL PROTECTED]
Subject: Re: [newbie] Looking for some advice

On Sat, 2003-07-05 at 04:10, C T wrote:
 I'm experiencing a number of strange behaviors with 9.1

 These things happened in this order:

 The first thing I noticed was the icons for CD/DVD and CD/R-W
 disappeared from the desktop - this was  maybe the 3rd or 4th time
 rebooting a new installation - they flashed on the screen for a fraction
 of a second and were gone.

 A few days later;
 I'm running a tone generator program under WINE - a Windoze program that
 *does* work in Linux. It worked fine for a while - then suddenly WINE
 would exit, failing... but if I hit 'debug' it would start and run
 normally - for a day or two.
 Now it detects an 'internal error' and gives the error to send to the
 bugs@ address. But the program freezes and none of the options work, eg
 'save as file', 'send via internet', 'cancel', 'exit program' and
 clicking on the program window to close doesn't work and top shows
 wine.bin using 88% of the CPU and I must kill the process.

 About the same time:

 Opera (v 7.11) started acting weird. First instead of a clicked link
 opening another tab in the window it started opening new windows
 (settings in preferences didn't make any difference) and also it would
 only save it's state from the last instance once in a while - this has
 been discussed as a possible Opera problem on the Opera forums and
 likely has nothing to do with my perceived Linux problem - haven't seen
 the first problem mentioned there.

 Next:
 Although plugins are enabled and applied to XMMS, on occasion it fails
 to open a stream that I listen to regularly and gives a message that the
 correct plugin may not be chosen. I go to preferences and find that the
 enable plugins box (for IO) has become unchecked - choosing the correct
 plugin, enabling and hitting 'apply' puts things back in order and the
 stream plays. This will happen after a reboot or sometimes just when
 restarting the stream - when even the player hasn't been shut down.

 A while later:

 Using MCC I tried to install the Development packages (which I thought
 I'd chosen at install time) but MCC wouldn't even allow me to check the
 boxes, except for the documentation.

 These are the main things although there may be something else I'm
 forgetting to mention.

 I'm wondering if these behaviors could be caused by a related error
 somewhere affecting everything - with the possible exception of the
 Opera stuff?

 I've considered attempting to repair the installation using the install
 disk, choosing 'upgrade' and no packages, formatting only the /
 partition in hopes of correcting what *might* be the problem.
 Would this be unwise?


  As a last resort, I could figure out how to back up my email and
 bookmarks and start over fresh - which seems like a good idea.(I know
 Windoze thinking... I'm workin' on it :)

 What options are available at this point?
 Where do  you begin troubleshooting problems like these?

 I'm only beginning to get a grip on the Linux file system and so, don't
 have the greatest confidence in manually editing files.

 Any and all thoughts/ideas/guesses welcome.
 Curt
Just a thought but how old is the CMOS battery in you box?
after about three years you would start getting strange results in most
any O/S.
(of course I get strange results all the time anyway)



 __
 Want to buy your Pack or Services from MandrakeSoft?
 Go to http://www.mandrakestore.com





Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


RE: e-Business Employment

2001-12-03 Thread Mario Pipkin

Hi James,

By new job do you mean you are new to the industry?  If not, I would
be interested in seeing a copy of your resume.  Either way, sheck out
EDI Specialists...

 
Mario O. Pipkin 
Director, Microsoft e*BIS 
Electronic Business Integration Services 
Intranet: http://itgweb/ebis 
Phone: (425) 936-0200 


-Original Message-
From: Taylor, James G. [mailto:[EMAIL PROTECTED]] 
Sent: Monday, December 03, 2001 1:39 PM
To: [EMAIL PROTECTED]
Subject: e-Business Employment


I am looking for a new job in the e-Business industry. Can anyone
recommend a good source of information for e-Business employment?


--   XML/edi Group Discussion List   --
Homepage =  http://www.XMLedi-Group.org

Unsubscribe =  send email to: [EMAIL PROTECTED]
Leave the subject and body of the message blank

Questions/requests:  [EMAIL PROTECTED]

To receive only one message per day (digest format) 
send the following message to [EMAIL PROTECTED], 
(leave the subject line blank) 

digest xmledi-group your-email-address

To join the XML/edi Group complete the form located at:
http://www.xmledi-group.org/xmledigroup/mail1.htm




--   XML/edi Group Discussion List   --
Homepage =  http://www.XMLedi-Group.org

Unsubscribe =  send email to: [EMAIL PROTECTED]
Leave the subject and body of the message blank

Questions/requests:  [EMAIL PROTECTED]

To receive only one message per day (digest format)
send the following message to [EMAIL PROTECTED],
(leave the subject line blank)

digest xmledi-group your-email-address

To join the XML/edi Group complete the form located at:
http://www.xmledi-group.org/xmledigroup/mail1.htm





RE: The XML/EDI has no Clothes!

2001-02-01 Thread Mario Pipkin
Title: RE: The XML/EDI has no Clothes!





Hello everyone,

Just a quick heads up - yes, BizTalk is alive, 
operational and being actively deployed... ___Mario O. PipkinDirector, Microsoft e*BISElectronic Business Integration ServicesIntranet: http://itgweb/ebisPhone: (425) 936-0200 


  -Original Message-From: Welsh, David 
  [mailto:[EMAIL PROTECTED]]Sent: Thursday, February 01, 2001 
  1:37 PMTo: 'Anthony Beecher'; '[EMAIL PROTECTED]'; 
  [EMAIL PROTECTED]Subject: RE: The XML/EDI has no 
  Clothes!
  
  Hey 
  Anthony,
  good 
  point. You're absolutely right and if the Redmond crew misses that target (say 
  the DOJ breaks them up as the Judge wants them to) I guess IBM can build a 
  mammoth mainframe for everyone in the universe to use. Maybe we can all use 
  the same program ona mainframe!! Now you've me going, let's just 
  do away with users and ...
  Hey 
  by the way, I haven't heard anything on Biztalk these last few months, after 
  they announced that expensive pricing scheme and it's move to manufacturing. 
  Is it even alive or are we in for another "track betting exercise" when we 
  were all betting whenWindows 98  Windows 2000 would hit the 
  street.
  
  Dave
  
  
-Original Message-From: Anthony Beecher 
[mailto:[EMAIL PROTECTED]]Sent: Thursday, February 01, 2001 1:19 
PMTo: '[EMAIL PROTECTED]'; 
[EMAIL PROTECTED]Subject: RE: The XML/EDI has no 
Clothes!

Steve, 
The "real" problem is caused by differing backend systems 
and backend capability. From there stem the different messages, mapping work 
and expense. XML will do nothing to solve this. 
This holy grail of plug and play integration will be 
achieved in the Microsoft centric world that is coming. Microsoft's 
next targets, via .net initiative, will be SAP, etc - (recall that they 
recently bought great plains.) I estimate they will cover Enterprise, SME 
and mom and pop. 
They will copy the concept of mysap.com where ERPs are 
hosted and developed as a service, then participants will all use Biztalk 
and there will be no incompatability.
This is my hunch. 
Anthony 
 -Original Message-  
From: Rachel Foerster [mailto:[EMAIL PROTECTED]] 
 Sent: Thursday, February 01, 2001 11:10 AM 
 To: [EMAIL PROTECTED]  
Subject: RE: The XML/EDI has no Clothes!  
  Steve, 
  You are totally on the 
mark. It is, was, and will be the challenge of  
semantic alignment of the business information being  exchanged and then the  mapping of 
that to the backend systems, that is the heartburn  of EDI, edi,  XML, or any other 
flavor of file structure/format. This still  
requires human  intelligence, evaluation and 
judgment. It's this challenge  that the 
hypsters  just refuse to recognize. This is also 
where all of the major  expense comes 
 in.   Also, has anyone taken a look recently at the "family" of XML 
 standards now  
available? It's not just XML, but DTD, Schema, DOM, DOM-2,  DOM-3, XSL, XSLT,  RDT, Namespace, 
to name just a few. Just think about trying  to 
understand  the whole array, figure out which 
ones are needed, architect  a system and 
 then assemble/acquire/implement the tools. What a 
nightmare!  And they told  us EDI was too complex, costly and time consuming. We haven't 
 seen anything  yet! 
Who wants to bet on the SME's going down this path?   But, so whatit's the new kid on 
the  blockperhaps/hopefully these new 
 kids will enable new ways of business 
information/message  exchanges. They're 
 just the natural progression of things. Who remembers 
board-wiring to  program computers? And then 
writing in Assembler, PL/1, Algol, Cobol,  
Fortan, Pascal, C, C++, Java, and perhaps, soon C#   Ain't this fun!   Rachel  
 -Original Message-  From: Steve L. Bollinger [mailto:[EMAIL PROTECTED]] 
 Sent: Wednesday, January 31, 2001 9:00 PM 
 To: [EMAIL PROTECTED]  
Subject: Re: The XML/EDI has no Clothes!  
  At 06:26 PM 
1/31/2001 -0800, Ken North wrote:  
Steve,  Keep the discussion going 
Don't know if you saw this  reply in 
another  thread.  
- 
 Hi Ken! I did see it. It is well 
written. I think ebXML  and UDDI 
are  good standards and are things that everyone 
around the world  will be able  to use unchanged. i.e. there will not be the variance in 
 standards that I  
was talking about. Just like in the X12 world, everyone uses 
 the ISA and  GS 
enveloping headers exactly the same around the world.  ebXML likewise  defines enveloping 
structures that can be used by all around the world  without change. ebXML and UDDL go further of course and I 
 think they will  be 
good standards.   
All of my comments 

Re: Install problem - Infinite redirect detected...

2000-04-28 Thread George Pipkin

So - let me see if I unbderstand fully what you're advising.  I remove
reference to jsdk.jar or servlet.jar from build-turbine.sh, and it won't
build.  I remove references from these two files from tomcat.sh, and tomcat
won't start.  I'm a little confused here.

- George Pipkin


on 4/25/00 9:43 AM, George Pipkin [EMAIL PROTECTED] wrote:

 Well, I did exactly this - I downloaded jsdk2.0 and I put it ahead of
 servlet.jar in my tomcat.sh where it establishes the classpaths.  After
 that, no servlets ran at all - I get a null pointer exception.  So then I
 put it after servlet.jar, and I'm back to the infinate redirection
 exception.  Is there something I'm missing ?

 - George Pipkin

if you are using tomcat, you shouldn't download ANY servlet.jar's or jsdk
2.0or have them in your classpath.

tomcat is a servlet engine that implements the latest jsdk. it comes with
its own copy of the interfaces that are needed for the jsdk. you don't need
to download them from sun.

our previous instructions were for Apache JServ which we assumed you were
using because (i personally) didn't see you post messages about your
configuration. in the future, you should post clear messages about
configuration and version information so that we don't go into circles like
that again.

you *should* make sure that you are using the latest version of tomcat
though which is 3.1.

-jon

--
Scarab -
  Java Servlet Based - Open Source
 Bug/Issue Tracking System
http://scarab.tigris.org/





To subscribe:[EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Problems?:   [EMAIL PROTECTED]






To subscribe:[EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Problems?:   [EMAIL PROTECTED]




Re: Install problem - Infinite redirect detected...

2000-04-25 Thread George Pipkin

Thanks for answering.  Unfortunately, that didn't fix it.  One thing I'm
wondering - when I built it, for the JSDK= argument, I used servlet.jar
rather than /JSDK2.0/jsdk.jar because that's the current version of that
library.  Do you think that could have anything to do with it ?


- George Pipkin

on 4/24/00 6:20 PM, George P. Pipkin [EMAIL PROTECTED] wrote:

 database.default.url=jdbc:mysql://localhost3306/gpp8p_turbine

this would be one problem...it should be localhost:3306

--
Scarab -
  Java Servlet Based - Open Source
 Bug/Issue Tracking System
http://scarab.tigris.org/





To subscribe:[EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Problems?:   [EMAIL PROTECTED]






To subscribe:[EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Problems?:   [EMAIL PROTECTED]




Re: Install problem - Infinite redirect detected...

2000-04-25 Thread George Pipkin

Do you know where I might go to get the 2.0 version of jsdk.jar ?


- George

At 09:56 AM 4/25/00 -0400, you wrote:
Thanks for answering.  Unfortunately, that didn't fix it.  One thing I'm
wondering - when I built it, for the JSDK= argument, I used servlet.jar
rather than /JSDK2.0/jsdk.jar because that's the current version of that
library.  Do you think that could have anything to do with it ?


  - George Pipkin

yes. it has everything to do with it.
you don't want the current version of the library.
please ensure that jsdk.jar (2.0, not 2.1) is ahead of
servlet.jar in the classpath.

Stephen




To subscribe:[EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Problems?:   [EMAIL PROTECTED]






To subscribe:[EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Problems?:   [EMAIL PROTECTED]




Re: Install problem - Infinite redirect detected...

2000-04-25 Thread George Pipkin

Well, I did exactly this - I downloaded jsdk2.0 and I put it ahead of
servlet.jar in my tomcat.sh where it establishes the classpaths.  After
that, no servlets ran at all - I get a null pointer exception.  So then I
put it after servlet.jar, and I'm back to the infinate redirection
exception.  Is there something I'm missing ?

- George Pipkin

At 09:56 AM 4/25/00 -0400, you wrote:
Thanks for answering.  Unfortunately, that didn't fix it.  One thing I'm
wondering - when I built it, for the JSDK= argument, I used servlet.jar
rather than /JSDK2.0/jsdk.jar because that's the current version of that
library.  Do you think that could have anything to do with it ?


  - George Pipkin

yes. it has everything to do with it.
you don't want the current version of the library.
please ensure that jsdk.jar (2.0, not 2.1) is ahead of
servlet.jar in the classpath.

Stephen




To subscribe:[EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Problems?:   [EMAIL PROTECTED]






To subscribe:[EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Problems?:   [EMAIL PROTECTED]




[midgard] question

2000-04-21 Thread Janet Pipkin

we are currently using midgard. it was installed by a previous employee.
i am trying to determine what version it is. would you please tell me
how i would locate that info.

thank you.


--
This is The Midgard Project's mailing list. For more information,
please visit the project's web site at http://www.midgard-project.org

To unsubscribe the list, send an empty email message to address
[EMAIL PROTECTED]




Re: Embperl - where are the cookies ? Success....

1999-10-30 Thread George Pipkin

Hi Everybody -

   Finally got it working, and I wanted to sum up what I did so if somebody
else runs into this, it'll be waiting for 'em in the archives.

In the startup.pl, here's what I got:

BEGIN{
$ENV{EMBPERL_SESSION_CLASSES} = "DBIStore SysVSemaphoreLocker";
$ENV{EMBPERL_SESSION_ARGS}= "DataSource=dbi:mysql:gpp8p_casenet
UserName=gpp
8p Password=x";
}
use Apache::Session::Embperl;
use HTML::Embperl;
$Apache::Session::SysVSemaphoreLocker::nsems = 16;

(note - I'm running Solaris so I gotta have the nsems argument)

The table:

mysql describe sessions;
+---+-+--+-+-+---+
| Field | Type| Null | Key | Default | Extra |
+---+-+--+-+-+---+
| id| varchar(16) |  | PRI | |   |
| expires   | int(11) | YES  | | NULL|   |
| length| int(11) | YES  | | NULL|   |
| a_session | text| YES  | | NULL|   |
+---+-+--+-+-+---+

The test script:

html
h1Test of session features/h1hr
[+ if($udat{counter} == 0){$udat{counter} = 1} +]
The page is requested [+ $udat{counter}++ +] occasions
since [+ $udat{date} ||= localtime +]
br
cookies: [+ $ENV{HTTP_COOKIE} +]
/html


I think that covers it.  Thanks for your help.

- George






George,

This problem was mentioned in a previous post because it is wrong in the
documentation (it may be fixed now).

The setting of $ENV{EMBPERL...} variables in this case need to be inside
a BEGIN block at the start of the script. This is because the value of
these variables are used to setup session tracking right when the
HTML::Embperl module is used (and this happens before your EMBPERL
environment variables are being set).

So put a BEGIN {} around them and you should be ready to roll.
Incidentally if you are using starting and stopping apache by hand you
will see a message from Embperl when session tracking has been enabled.
If you do not see the message don't waste your time looking at your test
page.

Another thing, the reason things update randomly is because each apache
child is keeping a copy of what you put in $udat. Since it is a special
Embperl variable it will hold it's value and not be cleaned up at the
end of page execution like other variables are each time you reload you
get a different child with a different incrementing number.

-- Owen

"George P. Pipkin" wrote:

 Hi Everybody -

I have been playing around with Embperl.  I have a little script that
 resembles the counter test mentioned in the docs, and it appears to
 run.  Problem is, no cookies get set.  And the value of the counter is
 erratic.  One browser will appear to pick up the count from another.
 Then it will jump back.  Here is the script:

 html
 h1Test of session features/h1hr
 [+ if($udat{counter} == 0){$udat{counter} = 1} +]
 The page is requested [+ $udat{counter}++ +] occasions
 since [+ $udat{date} ||= localtime +]
 br
 cookies: [+ $ENV{HTTP_COOKIE} +]
 /html
 ~

 Incidently, $ENV{HTTP_COOKIE} never shows any value at all.  I have the
 session mechanics hooked up to a mysql database.  Here's the setup stuff
 in startup.pl:

 $ENV{EMBPERL_SESSION_CLASSES} = "DBIStore SysVSemaphoreLocker";
 $ENV{EMBPERL_SESSION_ARGS}= "DataSource=dbi:mysql:gpp8p_casenet
 UserName=gpp
 8p Password=xxx";
 use Apache::Session;
 use HTML::Embperl;

 And BTW, I did set up the two tables in that database

 Any ideas 

 - George Pipkin

 --

****
***
 George P. Pipkin h - (804)-245-9916
 1001 Emmet St.   w - (804)-924-1329
 Carruthers Hall  fax -
 (804)-982-2777
 Charlottesville, Va. 22903
 http://jm.acs.virginia.edu/~gpp8p/


***


***
George Pipkin
Advanced Technology Group
University of Virginia
(804)-924-1329
***




Embperl - where are the cookies ?

1999-10-29 Thread George P. Pipkin

Hi Everybody - 

   I have been playing around with Embperl.  I have a little script that
resembles the counter test mentioned in the docs, and it appears to
run.  Problem is, no cookies get set.  And the value of the counter is
erratic.  One browser will appear to pick up the count from another. 
Then it will jump back.  Here is the script:


html
h1Test of session features/h1hr
[+ if($udat{counter} == 0){$udat{counter} = 1} +]
The page is requested [+ $udat{counter}++ +] occasions
since [+ $udat{date} ||= localtime +]
br
cookies: [+ $ENV{HTTP_COOKIE} +]
/html
~

Incidently, $ENV{HTTP_COOKIE} never shows any value at all.  I have the
session mechanics hooked up to a mysql database.  Here's the setup stuff
in startup.pl:

$ENV{EMBPERL_SESSION_CLASSES} = "DBIStore SysVSemaphoreLocker";
$ENV{EMBPERL_SESSION_ARGS}= "DataSource=dbi:mysql:gpp8p_casenet
UserName=gpp
8p Password=xxx";
use Apache::Session;
use HTML::Embperl;

And BTW, I did set up the two tables in that database

Any ideas 

    - George Pipkin


-- 
*******
George P. Pipkin h - (804)-245-9916
1001 Emmet St.   w - (804)-924-1329
Carruthers Hall  fax -
(804)-982-2777
Charlottesville, Va. 22903  
http://jm.acs.virginia.edu/~gpp8p/
***



Do AI lenses have maximum aperture index pin?

1999-01-22 Thread Michael L. Pipkin, M.D.

There is a pin or lug at 7 o'clock on the mount of all AI-S lenses (looking
at the lens from behind) which Nikon calls the maximum aperture indexing
pin.  Only the FA and F4 (I believe) use this pin to obtain the lens'
maximum aperture.  However, my AI 55mm Micro has this pin and I am wondering
when it appeared in production.  Any manual focus AI (not AI-S) lens owners
who would be willing to examine their lenses for presence of this pin,
please tell me whether your lens has it, along with serial # or year of
manufacture and focal length/speed.  I will report back to the list as to
how early Nikon started preparing to offer Matrix metering, because that is
what the maximum aperture indexing pin is for I believe.

Michael



FA meter modes

1999-01-20 Thread Michael L. Pipkin, M.D.


"Daniel I. Applebaum" [EMAIL PROTECTED] wrote:

The FA also provides matrix metering with non-CPU lenses, but only
with AI-S lenses, not AI or AI modified.

The FA (like the F4) DOES matrix meter true AI lenses if they have the
maximum aperture lug.  I don't know whether all do.  AI'd and non-Nikon AI
lenses do not have this lug (look at the back of the lens: the maximum
aperture lug is the stubby protrusion at about 7 o'clock).  Matrix metering
requires that the camera know the actual f/ratio of the lens so it can
estimate the brightness of the scene.  All AF Nikons except F4 obtain the
maximum aperture electronically only.

MLP