Search Results

Search: Posts Made By: charles_n_may
76,552
Posted By charles_n_may
Presumably you want this to run from a scheduled...
Presumably you want this to run from a scheduled script that does not need to be prompted for a password.

Once you have your keys set up properly (your originator's public key appended to the...
2,533
Posted By charles_n_may
Problem solved with embarrassingly simple change
After much anxiety this problem is solved.

Evidently qmail requires a blank line between the Content-type declarations for the attachment and the beginning of the encoded content. Sendmail is not...
17,382
Posted By charles_n_may
Sample awk translator cat translator.awk ...
Sample awk translator
cat translator.awk

BEGIN { FS="," }
{
for (i=1; i<=NF; i++) {
printf "%s", translateEmbeddedQuote($i)
if ( i< NF ) printf ","
else printf "\n"
}
}...
2,533
Posted By charles_n_may
Unfortunately that's not sufficient because it...
Unfortunately that's not sufficient because it doesn't have a formatted HTML body, isn't multipart, and doesn't have the custom headers required. You really have to use my example.

The code that...
2,533
Posted By charles_n_may
Sendmail succeeds, qmail fails
I am attempting to send multipart formatted email using sendmail -t with attachments. The attachments always arrive as empty if sent from linux. They are intact if sent from AIX.

Does qmail not...
10,194
Posted By charles_n_may
Well now this is promising. I will look into that...
Well now this is promising. I will look into that in more detail overnight. Simply using the dot - dot-slash notation also makes the linux version at least compatible with Solaris. I modified the...
10,194
Posted By charles_n_may
For my linux host: $ which ksh ...
For my linux host:


$ which ksh
/bin/ksh

$ print ${.sh.version}
Version JM 93t+ 2010-06-21
10,194
Posted By charles_n_may
I want the behavior given by using the function...
I want the behavior given by using the function keyword as it is indeed different from that using the parentheses. I use the difference (ksh functions defined with function have their own function...
10,194
Posted By charles_n_may
Dot sourcing differences in ksh, AIX vs Linux vs Solaris
Why does dot sourcing of ksh functions behave so differently between AIX, Solaris, and Linux? How can I make Linux behave the way I want in the test I show below?

I have a library of...
4,101
Posted By charles_n_may
/usr/xpg4/bin/awk works on Solaris but is not...
/usr/xpg4/bin/awk works on Solaris but is not installed on my AIX system. So nawk gives me consistent behavior and is installed on both systems.
4,101
Posted By charles_n_may
BTW I get the same errors in SunOS (and success...
BTW I get the same errors in SunOS (and success in AIX) if I try to use the match function
match($0,re) { ...

---------- Post updated at 04:50 PM ---------- Previous update was at 04:47 PM...
4,101
Posted By charles_n_may
awk variable regexp works in AIX but not in SunOS?
Using awk variables for regular expressions is working for me in AIX. It is failing for me in SunOS. I don't know why. Can someone explain and/or suggest a fix for the SunOS version?

Here is a...
Showing results 1 to 12 of 12

 
All times are GMT -4. The time now is 02:13 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy