forwarding

IMAP forwarder

I'm wondering what is the quickest and most reliable way to forward mail from an IMAP account. My university does not allow our student-mailbox to forward to a private e-mail account (everybody uses either Gmail or Hotmail here). It's a political thing, not technical. We do have IMAP access to the mailbox. I would like to have a service...

How to forward the TCP/IP traffic of a process in Windows XP?

(The curly lines with dots represent a network route.) Having a process called "foo.exe", is there a way to forward everything it communicates over TCP/IP to a forwarding proxy located elsewhere? This forwarding should not reflect to other processes. Another question: if there are multiple network adapters, is it possible to force a ...

htaccess request forwarding if internal ip

Is there a possible htaccess directive that can transparently forward request from index.php to index_internal.php if the request is coming from an internal ip range? ...

Grails forwarding and/or redirection with parameters

Is it possible to do page forwarding in Grails? I searched but no luck. If possible, how do I pass parameters in the forwarding method? If not, how would I do it using redirection? I've found something like this for redirection so far: <% response.setStatus(301); response.setHeader( "Location", "http://wodaklab.org/resource/paramName" )...

Web forwarding proxy in C# or PHP available?

I have some shared server web hosting in the States (I'm from the UK), which allows me to publish PHP and .NET applications. I cannot install my own software onto the remote server, but I'd like to set up a web forwarding proxy for accessing sites that serve different content depending on what country you're from. My C# and ASP.NET skil...

Client firewall blocks all ports but 80 and 443, need away to forward requets on port 443 to SSH or HTTPS

Hi, I am currently working at a client were they have locked down the network, except for ports 80 and 443. I need to connect to our server using SSH, but the same server also runs our website. We do not want to invest in a new server or place a second network card. I have been searching the internet for away to setup our linux server ...

Does PHP Have an Equivalent of Java's RequestDispatcher.forward?

In Java I can write a really basic JSP index.jsp like so: <% request.getRequestDispatcher("/home.action").forward(request, response); %> The effect of this is that a user requesting index.jsp (or just the containing directory assuming index.jsp is a default document for the directory) will see home.action without a browser redirect, i....

Pop3 to SMTP message custom forwarder in C#

I'd like to write a service that periodically checks a POP3 account for new messages and based on custom business logic forwards the messages to an appropriate "To", and possibly changes the "From" as well. I might need to keep some messages on the server until certain conditions are ready for them to be forwarded. I found a sample usi...

Relaying a request in asp.net (Forwarding a request)

I have a web application that communicates between two different web applications (one receiver and one sender, the sender communicates with my application, and my application communicates with both). A regular scenario is that the sender sends a HttpRequest to my application, and I receive it in an HttpHandler. This in turn sends the H...

nmake - how to forward macros between nmake invocations?

Hi How can I forward macros between nmake invocations? Let's say we have --- a.mak --- some_variable = value all: nmake -f b.mak --- END --- --- b.mak --- all: @echo some_variable = WHAT TO PUT HERE TO GET VALUE OF some_variable? --- END --- I was trying different things like using set and setx commands but value of vari...

How can I forward macros between nmake invocations from callee to caller?

How can I forward macros between nmake invocations from callee to caller? It's the reverse of what I was asking here: nmake - how to forward macros between nmake invocations? ...

Python: get http headers from urllib call?

does urllib fetch the whole page? when a urlopen call is made? I'd like to just read the http response header without getting the page it looks like urllib opens the http connection and then subsequently gets the actual html page... or does it just start buffering the page with the url open call? import urllib2 myurl = 'http://bit.ly...

Remove Confirmation Box vbs script

I have the following code where i could send mail through my configured outlook. I can run this vbs using a rule in my outlook which in turn send a mail to the email specified in the script But i am getting a confirmation box asking a virus or not while running this script to send a mail. How to get rid of this confirmation box to mak...

domain forwarding and seo

I want http://mynewdomain.com to forward with masking to http://mysecretdomain.com/mynewsite. When a user types in http://mynewdomain.com/aboutus.html, he should see the contents of http://mysecretdomain.com/mynewsite/aboutus.html. I do not want the public to be aware of http://mysecretdomain.com. Will the way I use forwarding and mask...

Proper way to forward domain from Server A to Server B

Here's my situation. I register myweb.ca (country specific) domain with Webhost Provider A because they allow ccTLD, while Webhost Provider B does not. I host my PHP files on Webhost Provider B at http://mysecretweb.com/myweb/ because I like them better (reliable, cheaper, proven etc...). I want to achieve the following: When user t...

Independentsoft generated .msg Messages losing attachments when forwarded

Hello All, I have got an issue that to be honest I initially did not think was a programming issue, but after checking all other areas I would appreciate your feedback if this could possibly be one. We have an ASP.NET web application that sends emails with attachments to users. Once sent the message is saved as a .msg file in SharePoi...

Port 80 forwarding - no css or images.

Hi all, ive got a bit of a problem at the minute. I have an xampp web server set up on my home computer and ive configured my router to forward port 80 requests to it. (im using dyndns to resolve my dynamic ip) However, although it retrieves the expected information from the server, it is missing all CSS and images. Does anybody know the...

Send keystroke to other control

Easy one for you guys. I have a textbox on top of a listbox. The textbox is use to filter ther data in the listbox. So... When the user type in the textbox, I would like to "trap" the down/up/pagedown/pageup keystrokes and fowarding them to the listbox. I know I could use the Win32 API and send the WM_KeyDown message. But there's mus...

Refresh browser via cron(or not) to a different page on remote request?

I need to display pages in a tutorial fashion. I looked in to netsupport, beamyourscreen and other possibilities but, I do not want the viewers to download anything. I cannot use gd / send screenshots due to audio / video instructions embedded in some of the pages. Basically, I need the ability to "refresh" a users browser window to a d...

How to display ads on outbound email?

I need to be able to display ads on email forwarded through a server (preferably postfix) based on the demographic information of the recipient. Basically a message will arrive for [email protected] and be forwarded to [email protected] with a small advertisement at the bottom. I would like to use postfix because it appears...