search for: redirects

Displaying 20 results from an estimated 7599 matches for "redirects".

Did you mean: redirect
2005 Feb 22
6
selective redirect
Hi, I am trying to redirect my subnet thru squid and it seems to be working. However I decided tu exclude two hosts from the redirect (ie acces the net directly) and can''t manage to achieve that. I am using the following rule: REDIRECT loc:!192.168.13.48,!192.168.13.200 3128 tcp 80 - With this rule everything gets redirected thru squid. I also tried:
2009 Jul 17
3
[LLVMdev] [PATCH 1/2] Trailing whitespace.
...+142,14 @@ static void SetMemoryLimits (unsigned size) #endif } -int -Program::ExecuteAndWait(const Path& path, +int +Program::ExecuteAndWait(const Path& path, const char** args, const char** envp, const Path** redirects, unsigned secondsToWait, unsigned memoryLimit, - std::string* ErrMsg) + std::string* ErrMsg) { if (!path.canExecute()) { if (ErrMsg) @@ -174,7 +174,7 @@ Program::ExecuteAndWait(const Path&...
2005 Jun 07
5
redirect and special rules
Hi! REDIRECT lan 3328 tcp www - !192.168.0.0/29,10.0.0.0/16 This rules redirect all traffic web to proxy but howto exclude 1 ip from redirect ?? REDIRECT lan 53 tcp domain - REDIRECT lan 53 udp domain - And in this case howto exclude some ip ? Thx.
2009 Jul 17
1
[LLVMdev] [PATCH 2/2] Make Program::ExecuteNoWait return a process ID.
...child = fork(); switch (child) { // An error occured: Return to the caller. case -1: MakeErrMsg(ErrMsg, "Couldn't fork"); - return; + return 0; // Child process: Execute the program. case 0: { // Redirect file descriptors... if (redirects) { // Redirect stdin - if (RedirectIO(redirects[0], 0, ErrMsg)) { return; } + if (RedirectIO(redirects[0], 0, ErrMsg)) { return 0; } // Redirect stdout - if (RedirectIO(redirects[1], 1, ErrMsg)) { return; } + if (RedirectIO(redirects[1], 1, ErrMsg)) { r...
2007 Sep 21
3
merb 0.4.0 - redirect problems
I had redirects working just the other day... before I upgraded to the latest release. Can somebody please chime in as to why this simple redirect is throwing an error? Controller: ----------------------- def do redirect "http://www.ebay.com" end Error Output: ------------------------- Internal serve...
2015 Sep 01
4
Redirected Folders not working for Desktop
I have a problem I've not been able to figure out. I'm using Samba4 as the office AD/DC. I've set up the Redirected Folders policy to redirect Desktop, Favorites and Documents to \\mail.hprs.local. I set this up months ago and it works great for Documents and Favorites, but Desktop is not redirected (no Desktop): $ ls -l /redirectedFolders/Users/thisuser/ total 16 drwxrwx---+ 10
2023 Aug 31
1
Samba Folder Redirection
On 30.08.2023 21:44, Chris me via samba wrote: > Hi, I have a samba 4 AD setup and I am using a GPO for folder redirection as stated here: > https://wiki.samba.org/index.php/Configuring_Windows_Profile_Folder_Redirections_with_Group_Policy > > I am able to redirect folders such as Desktop, Documents, etc but I am trying to redirect AppData and it will not work. When I try setting that,
2015 Sep 02
4
Redirected Folders not working for Desktop
Well, I've just added another directory to not make the redirected folders a the root. And, Favorites and Documents do work. Goog suggestion to check the Windows event viewer. I'll do that and get back with what I find. Thanks, --Mark -----Original Message----- > To: samba at lists.samba.org > From: James <lingpanda101 at gmail.com> > Date: Tue, 1 Sep 2015 08:14:06 -0400
2018 Oct 16
3
[sieve] Restrict redirects to only own domain
Hello list, I'd like to let my colleagues redirect mail automatically (via a sieve filter) to other mailboxes within the same domain, but deny redirects to outside mailboxes (gmail, yahoo etc.) since this is considered bad practice and could lead to blacklisting (forwarding spam for example). If I set sieve_max_redirect to 0 then no redirect is allowed, at all. I wish to let redirects to internal mailboxes still possible. Ideas ? Yassine.
2012 Jul 16
3
outlook and redirect sieve
Hi Aall, we are having issues with outlook clients, running exchange or lotus being unable to parse the email messages redirected by dovecot's sieve 0.3.1, the command is plain redirect "email at lotusmail.xxx"; redirects from mta also work correctly exchange was fixed by removing this commit http://hg.rename-it.nl/dovecot-2.1-pigeonhole/raw-diff/082216ad12d6/src/lib-sieve/cmd-redirect.c are there any other modifications to the email body or headers that can make those mesages not parsable for outlook ? looking...
2014 Dec 17
3
AMI Redirect both calls from a bridge
Doe anybody know of a way to redirect both channels from a bridge to different dial plan extensions from the using the AMI. Currently, as soon as I redirect one of the channels the other appears to be dropped and gets reorder tone (congestion, fast busy). I guess what I really need is a way to redirect one of the channels and hold on to the other. Thanks, Neil Cherry
2009 Apr 17
2
Sieve "redirect"
Is there an alternative to the "redirect" Sieve capability? For example: if header :contains "Subject" "Listserv" { redirect "list-user1 at example.com"; redirect "list-user2 at example.com"; redirect "list-user3 at example.com"; stop; } How can I do the above without using "redirect"? Unfortunately,
2006 Jul 21
1
GLX redirection extension
I think that I may have found a potentially useful way out of some problems within the current compositing framework. Basically, the server has information that the compositor would find useful. Of course, I may be wrong ... GLX redirection --------------- The GLX protocol provides GL applications with the contexts and drawables that they require to execute GL. Since the X server is usually in
2007 Jul 26
6
response.should_not redirect_to
Hey, May be it is just too deep night over here and I''m missing something though I got this failure on {{{response.should_not redirect_to}}}: ''QueuesController should allow authenticated user to access ''show'''' FAILED Matcher does not support should_not. See Spec::Matchers for more information about matchers. Also I''ve found this in
2009 Jul 17
0
[LLVMdev] [PATCH 2/2] Make Program::ExecuteNoWait return a process ID.
...    // An error occured:  Return to the caller. >     case -1: >       MakeErrMsg(ErrMsg, "Couldn't fork"); > -      return; > +      return 0; > >     // Child process: Execute the program. >     case 0: { >       // Redirect file descriptors... >       if (redirects) { >         // Redirect stdin > -        if (RedirectIO(redirects[0], 0, ErrMsg)) { return; } > +        if (RedirectIO(redirects[0], 0, ErrMsg)) { return 0; } >         // Redirect stdout > -        if (RedirectIO(redirects[1], 1, ErrMsg)) { return; } > +        if (RedirectIO(r...
2020 Feb 03
2
Changes to Folder Redirection
I am having some issues that I believe might be related to folder redirection that has prompted me to review my folder redirection GPO settings. On the "Configuring Windows Profile Folder Redirections" page of the Samba WIKI I find an 'information box' that says, /"//Windows does not support dynamically-generated user home folders provided by the Samba [homes] section.
2009 Aug 14
4
Redirecting mail gives 'mail forwarding loop' to the sender - calling for sieve help
Greetings, i am testing: - dovecot-1.2-sieve-0.1.11 - dovecot 1.2.3 - dovecot-1.2-managesieve-0.11.8 (with patch) I am trying to use sieve_after to execute some redirection of mails. I have put in the after script: require "include"; require "fileinto"; if header :contains ["To","Cc"] "userA at acasalud.com.ar" { keep; redirect
2006 Mar 27
13
Is this a bug in Ajax handling?
When a controller responds to a link_to_remote with a redirect_to, the link_to_remote gets a success callback, this would seem like a bug to me, at a minimum it should return a failure? This is driving me crazy because all the login engines/generators respond to an authentication error with a redirect_to. The work around is to change them to all do a render :layout => false, :status => 500
2008 Dec 03
2
Render and/or redirect were called multiple times in this action
I''m trying to add an application enabled/disabled flag in my application.. This is my code. [code=] # application.rb ... before_filter :check_enabled_flag private def check_enabled_flag application_flag = ApplicationFlag.find(:first) if application_flag.application_enabled redirect_to application_disabled_path and return end end[/code] and for some reason
2023 Aug 30
1
Samba Folder Redirection
Hi, I have a samba 4 AD setup and I am using a GPO for folder redirection as stated here: https://wiki.samba.org/index.php/Configuring_Windows_Profile_Folder_Redirections_with_Group_Policy I am able to redirect folders such as Desktop, Documents, etc but I am trying to redirect AppData and it will not work. When I try setting that, when a user logs on it will just sit at the signing in screen