What I really need is an SMTP server that supports multiple domains, each having a different IP, and the headers for messages from each domain have to have the proper IP address.
Has anyone heard of such an SMTP server for Windows?
User Profile
Collapse
-
IIS's SMTP server: virtual server, changing the outbound FQDN and IP
Hey, everyone.
I have a server that both hosts multiple websites AND sends mass emails for those multiple websites, but it does NOT receive email for those domains.
Each website has both a public and private IP, which are bound to the NIC.
When I send out my mass emails, I would like it so that the "Received: from" lines in the message header reflects the domain and public IP that the email is... -
All: I ended up using two queries to perform this operation. It increased the number of steps required, but worked and was consistent.Leave a comment:
-
VB in ASP vs. straight Visual Basic code: Server.MapPath
Ok, so I have to reuse some VB that was used in an ASP page in a place where I can only use straight VB code. And of course Server.MapPath doesn't work.
Any ideas?
Thanks! -
Could I pull the user defined values from another temp table? Would they then be considered user defined values, and then could I use one insert?Leave a comment:
-
INSERT INTO using SELECT and values, and inserting multiple rows
Hey, everyone!
Basically, I need to insert *multiple rows* into table A from table B based upon some criteria, and I need to insert some static values along with each row from table A.
For example:
insert into tableA (col1,col2,col3 ,col4,col5)
values
('Cheese',
'Blue',
'John Wayne',
select favorite_movie from tableB
where movietype = 'SciFi'
and (moviedate=1965... -
Thanks, iburyak. I talked to a few friends, who pointed out the stupid "looping upon a query" error that I had made.
So what I ended up doing was querying the entire table with my WHEREs and ORs, and then running some IF-THEN statements mirroring those WHEREs and ORs, and if something was true then spit out the link.
Pretty simple, really, when I look back on it. Just a dumb looping mistake I didn't have...Leave a comment:
-
Independent loading of IFRAMEs containing ASP/SQL
Hello!
I have a series of IFRAMEs in which different ASP (with SQL) pages load. These modules all run different queries off of the same server, and they're all trying to hit the server at the same time.
<div id="1">
<iframe src="1.asp"></iframe>
</div>
<div id="2">
<iframe src="2.asp"></iframe>
</div>... -
I thought I might add some information to help explain how this system works:
There are three rights in the recruitment system: Recruit, Enlist, or Take. When a user logs into the system, the system knows certain characteristics about the user: their security level, their member ID, state, county, ward/precinct, and zip code.
So, a typical user might have the following settings:
member_id = 482...Leave a comment:
-
Need help refining lengthy re-iterative (looping) query
Hello, everyone!
Here's are the basics:
1. The query looks at all positions that are active and haven't been filled.
2. It then has to look at every single position and determine three things:
Does the person running the query (via an ASP page) have certain rights?
a. Recruit rights
b. Enlist rights
c. Take rights
This works fine for 100 or less positions. But I...
No activity results to display
Show More
Leave a comment: