Re: Random session drops?

2006-11-22 Thread Neil Middleton
Generally it seems to be happening across all our apps, and with users that have previously logged in fine, and logged in OK since. N On 11/22/06, Josh Nathanson <[EMAIL PROTECTED]> wrote: > > A lot of time it seems random, but digging further reveals a sensible > reason > for dropped sessions. >

RE: replace syntax issue

2006-11-22 Thread Bobby Hartsfield
If you need to read content from a URL, use cfhttp not cffile. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 10:36 AM To: CF-Talk Subject: replace syntax issu

Re: Initializing Objects in Application.cfm

2006-11-22 Thread Aaron Roberson
Dan, You keep referring to stuff that may or may not be on another thread. "my AJAX and CF analogy" and "my JODE example." I really don't have a clue what you are talking about and why you think that cfoop.org is all wrong. Are you just trolling or do you have some valuable input that we should b

RE: Country Name Case

2006-11-22 Thread Phillip B. Holmes
Here you go Rich. This may be of some use to you. http://www.phillipholmes.com/?p=112 Warmest Regards, Phillip B. Holmes http://www.phillipholmes.com -> -Original Message- From: RichL [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 5:03 AM To: CF-Talk Subject: Cou

Re: Wrong error message under CF5

2006-11-22 Thread Claude Schneegans
>>Are you sure you don't have the function defined twice? Definitely sure. This was the first thing I verified. And it happens with any template that has a function defined in it. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/custom

RE: Spry Dataset not sorting

2006-11-22 Thread Chad McCue
When I run it with debugging on it shows a box with this. It is the same every time I click the sorting column. Generated region markup for 'Recruitment_Div':  First Name  Last Name Company Name Country Wanted Position     Chad McCue Advanced Media Productions Canada Colorist Edit

Re: Random session drops?

2006-11-22 Thread Josh Nathanson
A lot of time it seems random, but digging further reveals a sensible reason for dropped sessions. What sort of other symptoms do you see when it happens? Who is it happening to? People can have cookies blocked on their LAN for example. -- Josh - Original Message - From: "Neil Midd

RE: How can I make this query run correctly?

2006-11-22 Thread Ian Skinner
If the requested earliest and latest dates fall within the same month, everything run well...but, if two months are spanned, no results are returned. Why? Rick Here is a query that we use to find birthdays for the next 28 days on our intranet. This may not be the most elegant solution, but it

RE: cfhttp - column name "" is invalid - huh?

2006-11-22 Thread Andy Matthews
Try taking off the name attribute from the cfhttp call. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 10:24 AM To: CF-Talk Subject: cfhttp - column name "" is invalid - huh? My syntax is correct yet I'm getting this error. Mayb

Re: CFQUERYPARAM stripping characters..why?

2006-11-22 Thread Cameron Johnson
I'm not sure of the specifics, but to troubleshoot, I'd test it by removing the CFQUERYPARAM and doing the insert. If it is still stripping the characters, it's not CFQUERYPARAM. It's either the form or the DB. Hope that helps, at least a little bit. Cameron > I have this code... > > insert

Re: Initializing Objects in Application.cfm

2006-11-22 Thread Dan Plesse
Even cfoop.org is all wrong. "Creating a Class in ColdFusion" That's more about creating components in CF. The class object in coldfusion is the most powerful object because it can create almost any object just like createObject() via forName(), reflection for object inspection (think cfdump) , ru

RE: How can I make this query run correctly?

2006-11-22 Thread Rick Faircloth
This question was originally asked to solve a problem when I directly queried a MySQL database...however, the query is built into a web app for one of my customer that doesn't work properly. The user is sending out birthday cards to clients and needs to know what clients have birthdates between, s

RE: How can I make this query run correctly?

2006-11-22 Thread Rick Faircloth
Thanks, Tom...the use of between may solve one problem I had with the actual working of the app, which was when the user would ask for birthdates on or between two dates (month and day) that spanned a month, no results would be returned. However, wouldn't "between" only dates actually "between" tw

RE: How can I make this query run correctly?

2006-11-22 Thread Rick Faircloth
Thanks, Jim...Got it figured out...I was running a query directly against MySQL DB with using CF. No results were being returned because I had the year included and no customers have been born for my client since the dates, 2006-11-27 to 2006-12-03, have even occurred yet! :oP Rick -Origi

Re: Initializing Objects in Application.cfm

2006-11-22 Thread Dan Plesse
You forgot Air Methods, unreasonable cake and strictly forbidden. On 11/22/06, Aaron Roberson <[EMAIL PROTECTED]> wrote: > > On 11/22/06, Dan Plesse <[EMAIL PROTECTED]> wrote: > > I download the zip and did a quick search for keyword ""java" and > > dreamweaver and it returned 0 of 18 documents

Re: Initializing Objects in Application.cfm

2006-11-22 Thread Aaron Roberson
On 11/22/06, Dan Plesse <[EMAIL PROTECTED]> wrote: > I download the zip and did a quick search for keyword ""java" and > dreamweaver and it returned 0 of 18 documents > and all the set() methods are "air methods" should be object.setmethod(). I > guess its to hide stuff. And not using objectFactor

Re: Initializing Objects in Application.cfm

2006-11-22 Thread Dan Plesse
I download the zip and did a quick search for keyword ""java" and dreamweaver and it returned 0 of 18 documents and all the set() methods are "air methods" should be object.setmethod(). I guess its to hide stuff. And not using objectFactory is like throwing rocks back at the people who are trying

Re: Initializing Objects in Application.cfm

2006-11-22 Thread Aaron Roberson
Scott, That definitely helps! -Aaron On 11/22/06, Scott Stroz <[EMAIL PROTECTED]> wrote: > Aaron, > > Functionally, there really is no difference between using the object factory > the way we did and instantiating an object in the application scope as you > are suggesting. > > When a variable, o

Re: cfhttp - column name "" is invalid - huh?

2006-11-22 Thread Jim Wright
[EMAIL PROTECTED] wrote: > My syntax is correct yet I'm getting this error. Maybe I just a second pair > of eyes to look at this. > Thanks. > > Code > > url="http://productlocator.site.com/productlocator/resources/9/KEGP/keg.pli"; > method="post" name="keg"> > > Error Occurred While Proces

cfhttp - column name "" is invalid - huh?

2006-11-22 Thread coldfusion . developer
My syntax is correct yet I'm getting this error. Maybe I just a second pair of eyes to look at this. Thanks. Code http://productlocator.site.com/productlocator/resources/9/KEGP/keg.pli"; method="post" name="keg"> LINE 87 #cfhttp.FileContent# Error Occurred While Proc

Re: How can I make this query run correctly?

2006-11-22 Thread Jim Wright
Rick Faircloth wrote: > Good morning, all. > > I'm having to directly query a MySQL database for a client > because they can't access their web app on my server. > > I'm trying to get clients' whose birthdates fall with a date range. > > I've tried variations, with no success in returning *any*

Re: Spry Dataset not sorting

2006-11-22 Thread Raymond Camden
Add this: Spry.Data.Region.debug = true; On 11/22/06, Chad McCue <[EMAIL PROTECTED]> wrote: > How is SPRY debugging turned on? Suppose to be a certain cap to make > sorting work? > > -Original Message- > From: Raymond Camden [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 22, 2006 1

RE: How can I make this query run correctly?

2006-11-22 Thread Rick Faircloth
Never mind...figured out that I needed to leave off the year to get birthdates...years don't matter... Thanks... Rick -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 10:47 AM To: CF-Talk Subject: How can I make this query run correctl

Re: javascript confirm

2006-11-22 Thread Tom Chiverton
On Wednesday 22 November 2006 14:51, Dan Vega wrote: > Yes indeed, I had a very long day yesterday and I was losing my mind. Sorry > for the dumb question!! Heh, we've all done it, no worries :-) -- Tom Chiverton Helping to administratively monetize eligible web-readiness **

Re: How can I make this query run correctly?

2006-11-22 Thread Tom Chiverton
On Wednesday 22 November 2006 15:46, Rick Faircloth wrote: > from clients > where Client_Birthdate >= '2006-11-27' > and Client_Birthdate <= '2006-12-31' where client_birthdate between and Between is a handy SQL shortcut, and the use of cfqueryparam with real CF dates leaves formatting it

Re: Wrong error message under CF5

2006-11-22 Thread Tom Chiverton
On Wednesday 22 November 2006 15:14, Claude Schneegans wrote: > Has anyone found a cure for that? Does you global error template include other things that might be confusing it ? -- Tom Chiverton Helping to revolutionarily repurpose turn-key niches *

Re: Spry Dataset not sorting

2006-11-22 Thread massimo
> I have a dataset that displays correctly but doesn't seem to sort when I > use onclick="dsRecruitments.sort('country');" Can you put something online? It doesn't have to be "live", even a static XML file plus the HTML would be okay. > anyone know where in the > SPRY JS I can put some alerts wh

RE: How can I make this query run correctly?

2006-11-22 Thread Ian Skinner
Is it a date formatting issue? Is so, what is the date date format MySQL could read? Thanks for any help! Is it a date field or a text field? If it is a date field try the createODBCDate() function. -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA

Re: replace syntax issue

2006-11-22 Thread Jochem van Dieten
coldfusion.developer wrote: > Why isn't this working? > > http://www.site.com/StoreLocator/Store_page.txt"; > variable="page_content"> The file attribute of cffile requires a path, not a URL. > src="http://productlocator.site.com/productlocator/resources/9/KEGP/header_ > 02.gif" width="242"

How can I make this query run correctly?

2006-11-22 Thread Rick Faircloth
Good morning, all. I'm having to directly query a MySQL database for a client because they can't access their web app on my server. I'm trying to get clients' whose birthdates fall with a date range. I've tried variations, with no success in returning *any* results. the latest version of the que

RE: Wrong error message under CF5

2006-11-22 Thread Dave Watts
> I have an application on a CF5 server which traps and logs > errors with some CFERROR template. > I have noticed that when an error occurs in a template which > has some function definition in a CFSCRIPT tag, say > myFunction (), whatever the error is, even a syntax error, > the error message

RE: Getting all CFCASE values from a file

2006-11-22 Thread Bobby Hartsfield
.*?', "\1", "all") /> (.*?).*", "\1") /> .*?", "") /> #myvar# The only thing changed is the second replace. The only other thing I can think of that you might run into is having more than one cfswitch block in the template. I'm sure there is a much better way. It can most likely be done with 1

RE: replace syntax issue

2006-11-22 Thread Ian Skinner
http://productlocator.site.com/productlocator/resources/9/KEGP/header_02.gif"; width="242" height="75">, "")> You need some quotes around your img string. http://productlocator.site.com/productlocator/resources/9/KEGP/header_02.gif"; width="242" height="75">', "")> -- Ian Skinner

RE: Spry Dataset not sorting

2006-11-22 Thread Chad McCue
How is SPRY debugging turned on? Suppose to be a certain cap to make sorting work? -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 10:33 AM To: CF-Talk Subject: Re: Spry Dataset not sorting Could it be a case issue? Maybe sort on COUNT

replace syntax issue

2006-11-22 Thread coldfusion . developer
Why isn't this working? http://www.site.com/StoreLocator/Store_page.txt"; variable="page_content"> http://productlocator.site.com/productlocator/resources/9/KEGP/header_02.gif"; width="242" height="75">, "")> Error: Missing argument name. When using named parameters to a function, every param

Re: Spry Dataset not sorting

2006-11-22 Thread Raymond Camden
Could it be a case issue? Maybe sort on COUNTRY instead. You can turn on Spry Debugging and it may help. On 11/22/06, Chad McCue <[EMAIL PROTECTED]> wrote: > I have a dataset that displays correctly but doesn't seem to sort when I > use onclick="dsRecruitments.sort('country');" anyone know where i

Spry Dataset not sorting

2006-11-22 Thread Chad McCue
I have a dataset that displays correctly but doesn't seem to sort when I use onclick="dsRecruitments.sort('country');" anyone know where in the SPRY JS I can put some alerts where the sorting should be happening. I have 3 pages each showing different datasets. Only one page will sort the rest wil

Wrong error message under CF5

2006-11-22 Thread Claude Schneegans
Hi, I have an application on a CF5 server which traps and logs errors with some CFERROR template. I have noticed that when an error occurs in a template which has some function definition in a CFSCRIPT tag, say myFunction (), whatever the error is, even a syntax error, the error message is always

Re: Identifying date/time objects

2006-11-22 Thread RichL
Will, It looks like isDate() will do what you need - to see if the string can be converted to a date You might want to look at parseDateTime() which will create a date object from the date string.. may or may not be of any use #parseDateTime(test)# | #isDate(test)# | #dateformat(parseDateTime

Re: OT: Employee Satisfaction

2006-11-22 Thread Jon Clausen
No problem, Teddy. If you liked that article, here's a bit more background on the book I referenced: http://gmj.gallup.com/book_center/FBATR/default.aspx Regards, Jon On Nov 21, 2006, at 10:52 PM, Teddy Payne wrote: > That article in an interesting read. Thanks Jon. > > Teddy > > On 11/21/

Re: javascript confirm

2006-11-22 Thread Dan Vega
Yes indeed, I had a very long day yesterday and I was losing my mind. Sorry for the dumb question!! On 11/22/06, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Tuesday 21 November 2006 20:55, Charlie Griefer wrote: > > CF is server side. JS is client side. > > It never ceases to make me scratch

Re: Identifying date/time objects

2006-11-22 Thread Charles Sheehan-MIles
I just slapped myself on my forehead, thank you. This worked fine: #lsdateformat(evaluate("#thisfield#"), "mm/dd/")# #evaluate("#thisfield#")# , #CHR(13)# On 11/22/06 8:31 AM, "Will Tomlinson" <[EMAIL PROTECTED]> wrote: > > #DateFormat(blahblah)# > > whatever > > > Wou

Random session drops?

2006-11-22 Thread Neil Middleton
Has anyone had any experience of CF seemingly randomly dropping sessions? I running in a single server config here. -- Neil Middleton Visit feed-squirrel.com ~| Introducing the Fusion Authority Quarterly Update. 80 pages of h

Re: MySQL Datasource error

2006-11-22 Thread Cutter (CFRelated)
Also, make sure port 3306 (or whatever your MySQL is using) is open on your firewall, if there is one on the CF machine (or one between your CF and MySQL). Cutter _ http://blog.cutterscrossing.com Steven Erat wrote: > In short, the problem is "Connection refused" when attempting

Re: javascript confirm

2006-11-22 Thread Tom Chiverton
On Tuesday 21 November 2006 20:55, Charlie Griefer wrote: > CF is server side. JS is client side. It never ceases to make me scratch my head that people can start using the one or the other without coming across this fundamental difference. -- Tom Chiverton Helping to augmentatively expedite

Re: Identifying date/time objects

2006-11-22 Thread Will Tomlinson
Or maybe you'd needta extract that date out first with a ListFirst()? Show this show that ?? Will ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your

Re: Identifying date/time objects

2006-11-22 Thread Will Tomlinson
#DateFormat(blahblah)# whatever Would that work? Will ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a yea

Re: imap.cfc

2006-11-22 Thread Rick Root
Yves Arsenault wrote: > Neat, I didn't know it existed. > > I might use it soon... I'm thinking about building a Flex-based webmail app. rick ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to

Identifying date/time objects

2006-11-22 Thread Charles Sheehan-MIles
I have a page which allows the user to select a custom query and download a CSV. The relevant code is: #fieldlist##chr(13)# #trim(rereplace("#newfield#", ",", " ", "all"))#, #CHR(13)# I want to be able to figure out if #thisfield# is a SQL date/time object so I ca

Re: Country Name Case

2006-11-22 Thread RichL
Thanks guys CapsFirstTitle() from CFLib seems to be working out well for me... a couple of minor tweaks but otherwise great On 11/22/06, Tom King <[EMAIL PROTECTED]> wrote: > Correction, its not on there, author was http://artlung.com but I > can't seem to find it on there. > Well, I have a copy

Re: DB Server Issues

2006-11-22 Thread Tom Chiverton
On Wednesday 22 November 2006 10:47, James Smith wrote: > [Macromedia][SequeLink JDBC Driver][ODBC Socket][MySQL][ODBC 3.51 > Driver][mysqld-4.1.21-community-nt]MySQL server has gone away Turn off persistant connections. > Is there any way to get around this, would changing from ODBC to JDBC help

Re: Country Name Case

2006-11-22 Thread Tom King
Correction, its not on there, author was http://artlung.com but I can't seem to find it on there. Well, I have a copy if you want a look see T On 22 Nov 2006, at 14:16, Tom King wrote: > There's a CFC called titlecase.cfc on cflib.org which is usually used > for names (i.e recognises von, de a

Re: imap.cfc

2006-11-22 Thread Yves Arsenault
Neat, I didn't know it existed. I might use it soon... ;-) Yves On 11/22/06, Rick Root <[EMAIL PROTECTED]> wrote: > > Anyone using imap.cfc out there? > > http://sourceforge.net/projects/cfimap-cfc/ > > Rick > > ~| Introduci

Re: Country Name Case

2006-11-22 Thread Tom King
There's a CFC called titlecase.cfc on cflib.org which is usually used for names (i.e recognises von, de as small etc..) You may be able to alter it to suit your needs T On 22 Nov 2006, at 14:06, Andy Matthews wrote: > You could do a test and cap the first letter of any word 4 letters or > lo

imap.cfc

2006-11-22 Thread Rick Root
Anyone using imap.cfc out there? http://sourceforge.net/projects/cfimap-cfc/ Rick ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your

RE: Country Name Case

2006-11-22 Thread Andy Matthews
You could do a test and cap the first letter of any word 4 letters or longer. -Original Message- From: RichL [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 5:03 AM To: CF-Talk Subject: Country Name Case Hi Guys I have a country reference table where all of the country na

Re: Initializing Objects in Application.cfm

2006-11-22 Thread Scott Stroz
Aaron, Functionally, there really is no difference between using the object factory the way we did and instantiating an object in the application scope as you are suggesting. When a variable, or object, is passed 'by reference', it simply means that a new instance of the variable or object is not

Re: Zip code locator

2006-11-22 Thread Doug Brown
Thanks. Actually I just found one at http://coldfusion.sys-con.com/read/154258_1.htm Pretty interesting. I know I could not build one myself, since I know nothing about the math used to get it done. Doug B. - Original Message - From: "Will Tomlinson" <[EMAIL PROTECTED]> To: "CF-Talk"

Re: Zip code locator

2006-11-22 Thread Charles Sheehan-MIles
Also take a look at: http://www.webmonkey.com/webmonkey/05/32/index4a.html?tw=programming I based my zip code search right out of this article. On 11/22/06 8:19 AM, "Charles Sheehan-MIles" <[EMAIL PROTECTED]> wrote: > Hi Doug, > > I have a zip code locator built into the CMS I'm working on.

Re: Getting all CFCASE values from a file

2006-11-22 Thread Pete Ruckelshaus
Thanks Bobby, I tried that and it didn't do quite what I was hoping. It did parse out the values from the cfcase statements, but it also left all of the other code from the CF template (i.e. all I wanted left at the end was the attribute values from the CFCASE statements). Here's my code: .*?'

Re: Zip code locator

2006-11-22 Thread Charles Sheehan-MIles
Hi Doug, I have a zip code locator built into the CMS I'm working on. Feel free to grab the code: http://activecharity.riaforge.org -- unzip the file and find the file /members/profilesearch.cfm. A more or less working version of it is here: http://www.veteransforamerica.org/index.cfm/page/searc

Re: Zip code locator

2006-11-22 Thread Will Tomlinson
> I am needing to implement a search within "X" miles of zipcode feature > on my websire, and was wondering if someone knows of an open source > solution. Talk to dave the disruptor. He knows zip code locators inside and out! Will ~~~

Zip code locator

2006-11-22 Thread Doug Brown
I am needing to implement a search within "X" miles of zipcode feature on my websire, and was wondering if someone knows of an open source solution. Thanks in advance Doug B. ~| Introducing the Fusion Authority Quarterly Upd

Re: CFUnit/ANT

2006-11-22 Thread Neil Middleton
Why is it everytime I post a problem I solve it two minutes later. The issue is that CFUnit only appears to work if it's at the top of the classpath dialog. Without this it seems to fall on it's backside. Neil On 11/22/06, Neil Middleton <[EMAIL PROTECTED]> wrote: > > I'm just getting into usin

CFUnit/ANT

2006-11-22 Thread Neil Middleton
I'm just getting into using CFUnit with the ANT integration (lazy developers are a PITA). Trouble is, we are developing against a shared server - so when I run my Ant script from my local machine I get an error saying that the build failed because it can't locate CFUnit. I'm guessing this is beca

[Reply To] Country Name Case

2006-11-22 Thread Seamus Campbell
CF_Capitalize is very good. Seamus You wrote Hi Guys > >I have a country reference table where all of the country names are >held in upper case. > >I want to be able to output in lower case but keep the caps where >appropriate (e.g. UNITED KINGDOM to United K

Re: Country Name Case

2006-11-22 Thread Gert Franz
You could do something like this. I did not test it though: Greetings / Grüsse Gert Franz Customer Care Railo Technologies GmbH [EMAIL PROTECTED] www.railo.ch Join our Mailing List / Treten Sie unserer Mailingliste bei: deutsch: http://de.groups.yahoo.com/group/railo/ english

Re: Country Name Case

2006-11-22 Thread RichL
Thank you very much Rob I found CapFirstTitle() which looks like it may be useful On 11/22/06, Rob Wilkerson <[EMAIL PROTECTED]> wrote: > On 11/22/06, RichL <[EMAIL PROTECTED]> wrote: > > > > Also, is there a UDF around for capitalising the first letter of each word? > > Take a look at initCapTit

Re: Country Name Case

2006-11-22 Thread Rob Wilkerson
On 11/22/06, RichL <[EMAIL PROTECTED]> wrote: > > Also, is there a UDF around for capitalising the first letter of each word? Take a look at initCapTitle() (I think that's the function name) at cflib.org. It won't be exact, but it'll get you pretty close.

Country Name Case

2006-11-22 Thread RichL
Hi Guys I have a country reference table where all of the country names are held in upper case. I want to be able to output in lower case but keep the caps where appropriate (e.g. UNITED KINGDOM to United Kingdom). However I think that this going to be close to impossible as there are values suc

DB Server Issues

2006-11-22 Thread James Smith
Some time ago the MySQL Server and CF sat on the same machine. About 8 months ago we moved it onto a separate machine and ever since then we occasionally get the message... [Macromedia][SequeLink JDBC Driver][ODBC Socket][MySQL][ODBC 3.51 Driver][mysqld-4.1.21-community-nt]MySQL server has gone a

Re: IIS 7.0 Vista

2006-11-22 Thread Tom Chiverton
On Tuesday 21 November 2006 16:35, Brian Peddle wrote: > Anyone have any success in setting up CF 7.02 on IIS 7.0? I'll be posting detailed instructions tonight. If you can't wait till then, drop me a bell off-list. -- Tom Chiverton Helping to preemptively bully essential portals **

Re: SOT: textfields on submit

2006-11-22 Thread Tom Chiverton
On Thursday 16 November 2006 20:30, Turetsky, Seth wrote: > So when CF gets it, would 1a and 1b always be the first values of the > lists, and 2a and 2b would be the 2nd...and so, or is that assuming too > much? And is that browser dependent? Although browsers tend to send back form fields in the

Re: It's Happened!

2006-11-22 Thread Tom Chiverton
On Tuesday 21 November 2006 23:45, Paul Boyd wrote: > on valid email addresses. Oh well, I thought the idea was neat, but > obvioulsy the service needs to be ironed out. At the end of the day it's impossible for a remote server to tell. I may, for instance, configure my mail server to accept emai

RE: Employee Satisfaction

2006-11-22 Thread David Low
> From: Snake [mailto:[EMAIL PROTECTED] > Sent: 21 November 2006 16:26 > To: CF-Talk > Subject: RE: Employee Satisfaction > > I actually have found that being too friendly with your staff > doesn't work very well. People generally don't want to be > mates with their boss and wont relax with you

<    1   2