search for: my_hostname

Displaying 12 results from an estimated 12 matches for "my_hostname".

2001 Dec 21
3
Wine config difficulties
...ion Me == Newbie I am trying to configure wine manually because the package i recieved does not include winesetup. I configured the drives to suit my setup and left the rest as the defaults. When i try to start wine with "wine program.exe" i get this error: "/root/.wine/wineserver-my_hostname/socket : no such file or directory" when i created a blank file at that location it returned "'/root/.wine/wineserver-my_hostname/socket' is not a socket" How do i make a socket in the correct location. Thanks in advance, Jeff Jeter -------------- next part --------------...
2007 Mar 27
2
gssapi auth issue...
...ot;foobar", not foobar.sfbay.sun.com (as reported by gethostname(3c)). So when dovecot does this: mech-gssapi.c: principal_name = t_str_new(128); str_append(principal_name, service_name); str_append_c(principal_name, '@'); ---> str_append(principal_name, my_hostname); We wind up asking kerberos to look for a ticket for imap at foobar, instead of imap at foobar.sfbay.sun.com. Obviously we can patch the source, but I was wondering if we could have a gssapi_hostname setting in the config file? Or perhaps we could have a knob letting us globally override my_ho...
2007 Nov 10
2
Request for variable unique to each server?
I've been looking for a variable I can use in my dovecot.conf within the INDEX= setting so I can have one index dir per imap server on NFS. I've been looking at http://wiki.dovecot.org/Variables but no variable seems to contain something like server hostname, and I've been hunting for the variable expansion code in dovecot but haven't been able to find it. %l (local IP) won't
2004 Oct 22
1
[PATCH] support OEM encoding in NTLM messages
...E; struct ntlmssp_challenge c; buf = buffer_create_dynamic(pool, sizeof(struct ntlmssp_challenge)); @@ -149,7 +165,7 @@ ntlmssp_create_challenge(pool_t pool, co if (flags & NTLMSSP_TARGET_TYPE_SERVER) ntlmssp_append_string(buf, offsetof(struct ntlmssp_challenge, target_name), - my_hostname); + my_hostname, unicode); ntlmssp_append_target_info(buf, offsetof(struct ntlmssp_challenge, target_info), @@ -200,11 +216,6 @@ int ntlmssp_check_request(const struct n flags = read_le32(&request->flags); - if ((flags & NTLMSSP_NEGOTIATE_UNICODE) == 0) { - *error =...
2009 Jul 01
4
mbox format and UIDVALIDITY
My base concern may be illustrated with the help of that simple telnet session: # telnet 127.0.0.1 imap Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. * OK [CAPABILITY IMAP4rev1 LITERAL+ SASL-IR LOGIN-REFERRALS ID ENABLE AUTH=PLAIN] Dovecot ready. a1 login testuser ****** a1 OK [CAPABILITY IMAP4rev1 LITERAL+ SASL-IR LOGIN-REFERRALS ID ENABLE SORT
2006 Sep 18
1
Incorrect GSSAPI Service Name for POP3
...(request->service, "POP3") == 0) { + str_append(principal_name, "pop"); + } else { + str_append(principal_name, t_str_lcase(request->service)); + } str_append_c(principal_name, '@'); str_append(principal_name, my_hostname); -----------------------------END PATCH-----------------------------
2013 Mar 07
1
HELP:Custom function didn't work
..._type FROM host_extra_info where name=''" + args[0] + "''") # return res.fetch_row puts res.fetch_row res.free dbh.close if dbh end end - Also I wrote a .pp file to test it: #/tmp/1.pp $extraaaaa = hosttype("my_hostname") notify { $extraaaaa: } Test results(the red value is the query result from db): [root@pm tmp]# puppet 1.pp notice: server notice: /Stage[main]//Notify[server]/message: defined ''message'' as ''server'' notice: Finished catalog run in 0.06 seconds It l...
2005 Mar 24
3
quota issue POP3
Hi Just u/g to RH FC3 from RH8.0 which seemed to work fine with quotas. I have quotas for usernames set up as /home/domain/domainX/username/ for web space 50MB say 48MB used so 2MB free and /var/mail/spool/username for email. 100MB (60MB used so 40MB is available). /var/mail/username is symbolic linked via to spool/mail under /var dovecot seems to be using the quota for /home/.. and sees
2004 Aug 09
1
[PATCH] RPA authentication mechanism
...nvalid token 1, %s", + get_log_prefix(auth_request), + error); + mech_auth_finish(auth_request, NULL, 0, FALSE); + return TRUE; + } + + service = t_str_lcase(auth_request->protocol); + + token2 = mech_rpa_build_token2(auth, t_strconcat(service, "@", + my_hostname, NULL), &token2_size); + + auth->service_ucs2be = ucs2be_str(auth->pool, service, + &auth->service_len); + auth->realm_ucs2be = ucs2be_str(auth->pool, my_hostname, + &auth->realm_len); + + mech_init_auth_client_reply(&reply); + reply.id = auth_request-&gt...
2005 Jun 27
5
"sh -i" My server was hacked. How can i found hole on my server?
...,2 0t0 7 /dev/null perl5.8.6 60138 nobody 1u PIPE 0x6f537410 0 ->0xffffff006f5372d0 perl5.8.6 60138 nobody 2w VREG 4,18 47856095 6407163 /usr/local/apache/logs/error_log perl5.8.6 60138 nobody 3u IPv4 0xffffff00168142c0 0t0 TCP my_hostname:55000->zagreb.hr.eu.undernet.org:9999 (ESTABLISHED) perl5.8.6 60138 nobody 4u IPv4 0t0 TCP no PCB, CANTSENDMORE, CANTRCVMORE perl5.8.6 60138 nobody 15w VREG 4,18 47856095 6407163 /usr/local/apache/logs/error_log perl5.8.6 60138 nobody 18w VREG...
2004 Jul 01
3
[PATCH, RFC] add APOP authentication mechanism
...ot;QUIT") == 0) @@ -228,6 +232,15 @@ static void client_destroy_oldest(void) } } +static char *get_apop_challenge(void) +{ + if (auth_client_find_mech(auth_client, "APOP")) { + hostpid_init(); + return i_strdup_printf("<%s.%s@%s>", my_pid, dec2str(ioloop_time), my_hostname); + } else + return NULL; +} + struct client *client_create(int fd, int ssl, const struct ip_addr *local_ip, const struct ip_addr *ip) { @@ -265,7 +278,8 @@ struct client *client_create(int fd, int main_ref(); - client_send_line(client, "+OK " PACKAGE " ready."...
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...auth(struct client_command_context *cmd) +{ + const struct imap_arg *args; + string_t *auth_urls; + const char *hostport; + + /* url mechanism [url mechanism ...] */ + if (!client_read_args(cmd, 0, 0, &args)) + return FALSE; + + auth_urls = t_str_new(256); + + // resolve this each time in case my_hostname changed + hostport = getenv("URLAUTH_HOSTPORT"); + if (hostport == NULL || *hostport == '\0') + hostport = my_hostname; + + while (IMAP_ARG_TYPE_IS_STRING(args[0].type) && + IMAP_ARG_TYPE_IS_STRING(args[1].type)) { + const char *rump = imap_arg_string(&args[0]...