Displaying 20 results from an estimated 38 matches for "nuser".
Did you mean:
user
2004 Aug 06
3
icecast2 ogg vorbis client request headers
Can anyone shed some light as to what icecast2 accepts as a client request methods for ogg vorbis,
apparently there is a difference bettween the way icecast2 handles mp3 and ogg vorbis.
php example for mp3 that works
fwrite($fp,"GET /mymp3 HTTP/1.1\nUser-Agent:$HTTP_USER_AGENT\n\n");
php example for ogg that doesnt work
fwrite($fp,"GET /mymnt.ogg HTTP/1.1\nUser-Agent:$HTTP_USER_AGENT\n\n");
ideas??
Dave St John
Mediacast1 Administration
Need Support ?
http://mediacast1.com/helpdesk
<p>--- >8 ----
List archives: http://...
2004 Aug 06
5
Ogg response headers
...requesting?
example
(for shoutcast winamp sends icy-metadata:1)
shoutcast server then recognizes its a player capable of streaming media so it sends the icy-metaint:8192 to winamp, along with a slew of other icy headers.
o here is my dilema
example php code
fwrite($sp,"GET /my_mp3 HTTP/1.0\nUser-Agent:Secret stuff alpha\nicy-metadata:1\n\n");//works with winamp when requested via php script
but
fwrite($sp,"GET /example.ogg HTTP/1.0\nUser-Agent:Secret stuff alpha\n\n"); //will not work in winamp when requested via php script
diff highlighted in blue.
any ideas./help would b...
2023 Mar 27
1
doveadm expunge unnecessarily tries to access TLS key
...13).
The Dovecot server works fine, which of course is the really important
thing.
But I have a cron job that cleans up all old mail from the mailbox that
I use for my mobile phone by running "doveadm expunge" every night.
That worked fine in 2.3.4, but now it fails:
> jdmobile at nuser:~$ doveadm expunge? mailbox '*' before 25d
> doveconf: Fatal: Error in configuration file
> /etc/dovecot/conf.d/10-ssl.conf line 23: ssl_cert: Can't open file
> /etc/letsencrypt/live/nuser.dybdal.dk/fullchain.pem: Permission denied
Of course, doveadm cannot access the TLS ke...
2023 Mar 27
1
doveadm expunge unnecessarily tries to access TLS key
..., which of course is the really important
> thing.
>
> But I have a cron job that cleans up all old mail from the mailbox that
> I use for my mobile phone by running "doveadm expunge" every night.
>
> That worked fine in 2.3.4, but now it fails:
> > jdmobile at nuser:~$ doveadm expunge? mailbox '*' before 25d
> > doveconf: Fatal: Error in configuration file
> > /etc/dovecot/conf.d/10-ssl.conf line 23: ssl_cert: Can't open file
> > /etc/letsencrypt/live/nuser.dybdal.dk/fullchain.pem: Permission denied
>
> Of course, doveadm...
2013 Feb 27
2
how to talk with doveadmin unix socket
Hello,
I would like to get mailbox quota by doveadm unix socket
(/var/run/dovecor/doveadm-server). I get from strace syntax of comunication:
write(9,
"VERSION\t1\t0\nUSER\t1\tpiotr.rotter at active24.pl\tservice=doveadm\n",
60) = 60
read(9, "VERSION\t1\t1\nSPID\t20805\n", 8192) = 23
read(9,
"USER\t1\tpiotr.rotter at active24.pl\temail=piotr.rotter at active24.pl\tclear=7T33z456\thome=/vm/08/A/active24.pl/piotr.rotter/\tuid=502\tgid=502\tquota_r...
2004 Aug 06
3
icecast2 ogg vorbis client request headers
> You must have some other, unrelated, problem, presumably elsewhere in your
> code.
this is what i have, and does work with mp3, but ogg does not want to work.
im testing with winamp, you think that may be the issue?
<p><p>fwrite($fp,"GET /mymp3 HTTP/1.1\nUser-Agent:$HTTP_USER_AGENT\n\n");
for ($i=0; $i<120; $i++) {
if (feof($sp)) break;
$str.=fread($sp,4096);
usleep(200000);
if (strpos($str,"\r\n\r\n")) break;
}
flush();
echo substr($str,strpos($str,"\r\n\r\n")+4);
flush();
while(!$shutdown_flag) {
$buf=fread($sp,...
2010 Jun 17
1
One graph for each row
Hi all,
I have the following data (from a performance test)
URL;time;Nr. of Users
url1;0.101;1
url10;0.048;1
url2;0.097;10
url2;0.066;10
url3;0.915;30
url3;0.847;30
I want to have one plot for each url (times for 1,10,30 user),
contained in *one* graph( one below each other).
What is the easiest way to do it?
Regards,
Markus
[[alternative HTML version deleted]]
2004 Aug 06
0
Ogg response headers
...tcast winamp sends icy-metadata:1)
>shoutcast server then recognizes its a player capable of streaming media
>so it sends the icy-metaint:8192 to winamp, along with a slew of other icy
>headers.
>
>so here is my dilema
>example php code
>fwrite($sp,"GET /my_mp3 HTTP/1.0\nUser-Agent:Secret stuff
>alpha\nicy-metadata:1\n\n");//works with winamp when requested via php script
>but
>fwrite($sp,"GET /example.ogg HTTP/1.0\nUser-Agent:Secret stuff
>alpha\n\n"); //will not work in winamp when requested via php script
>
>diff highlighted in blue...
2004 Aug 06
0
Ogg response headers
...(for shoutcast winamp sends icy-metadata:1)
Winamp sends that to mean "I want mp3 inline metadata if you support it", but
this does not imply anything about the requested stream format.
<p>> so here is my dilema
> example php code
> fwrite($sp,"GET /my_mp3 HTTP/1.0\nUser-Agent:Secret stuff
> alpha\nicy-metadata:1\n\n");//works with winamp when requested via php
> script but
> fwrite($sp,"GET /example.ogg HTTP/1.0\nUser-Agent:Secret stuff alpha\n\n");
> //will not work in winamp when requested via php script
Winamp is buggy - it doesn'...
2004 Aug 06
0
icecast2 ogg vorbis client request headers
...St John wrote:
> Can anyone shed some light as to what icecast2 accepts as a client request
> methods for ogg vorbis, apparently there is a difference bettween the way
> icecast2 handles mp3 and ogg vorbis.
>
> php example for mp3 that works
> fwrite($fp,"GET /mymp3 HTTP/1.1\nUser-Agent:$HTTP_USER_AGENT\n\n");
>
> php example for ogg that doesnt work
> fwrite($fp,"GET /mymnt.ogg HTTP/1.1\nUser-Agent:$HTTP_USER_AGENT\n\n");
>
These should both work. To be strictly correct, you must use \r\n everywhere
you have \n, but icecast isn't picky about...
2001 Apr 18
2
Samba+Winbind
Dear Andrew Tridgell
I have a small Problem. At the moment I am using Samba_2.0.7, and I must
say this is a very good product, but until now there is a limitation. The
User on the Windows and Unix Machine must always be the same. I think this
was so or I have overseen some fundamental configuring steps. But thats
obsolete with Samba_2.2. Now I plan to test and eventually upgrade to
Samba_2.2.
I
2008 Apr 17
0
Error log, when using apache2.2.x modproxy with mongrel
...ccess mongrel directly.
and the mongrel.log will have error like below:
then i try to put the REQUEST DATA into test_http11.rb, looks like "Connection:
Keep-Alive\r\nGET /test/show HTTP/1.1\r\n " makes it confuse.
REQUEST DATA: "GET /test/show HTTP/1.1\r\nHost:
www.testkoji.com\r\nUser-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1;
zh-TW; rv:1.9b5) Gecko/2008032620 Firefox/3.0b5\r\nAccept:
text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\r\nAccept-Language:
zh-tw,en-us;q=0.7,en;q=0.3\r\nAccept-Encoding:
gzip,deflate\r\nAccept-Charset: Big5,utf-8;q=0.7,*;q=0.7\r\nX...
2004 Aug 06
1
Patch to add User-Agent to libshout
...src/shout.c 13 Jul 2003 16:31:20 -0000 1.48
+++ src/shout.c 21 Jul 2003 04:20:22 -0000
@@ -756,7 +756,7 @@
char *auth;
char *ai;
- if (!sock_write(self->socket, "SOURCE %s HTTP/1.0\r\n", self->mount))
+ if (!sock_write(self->socket, "SOURCE %s HTTP/1.0\r\nUser-Agent: libshout/%s\r\n", self->mount, VERSION))
return SHOUTERR_SOCKET;
if (self->password && (auth = http_basic_authorization(self))) {
<p><p>/ek
http://elektronkind.org/
Psytrance: it's post-grad school for ravers.
--- >8 ---...
2012 Jul 22
2
maildir_copy_with_hardlinks on v.2.0.19
Hi,
I'm trying to get the so-called "single instance store" (I think cyrus
has got the name for the first time) with dovecot --version = 2.0.19
binary package installed from ubuntu 12.04 lts official repo.
I have checked that "maildir_copy_with_hardlinks" is enabled ("dovecot
-a|grep hard" shows "yes") then I have installed and enabled the lmtp
2004 Aug 06
1
Ogg response headers
...1)
> >shoutcast server then recognizes its a player capable of streaming media
> >so it sends the icy-metaint:8192 to winamp, along with a slew of other
icy
> >headers.
> >
> >so here is my dilema
> >example php code
> >fwrite($sp,"GET /my_mp3 HTTP/1.0\nUser-Agent:Secret stuff
> >alpha\nicy-metadata:1\n\n");//works with winamp when requested via php
script
> >but
> >fwrite($sp,"GET /example.ogg HTTP/1.0\nUser-Agent:Secret stuff
> >alpha\n\n"); //will not work in winamp when requested via php script
> >
>...
2004 Aug 06
3
Strange change in icecast kh14 for IP logging
> What I did notice is that the date field is not first, even though it's
> date ordered. I personally didn't like that, so I just moved the date
> field. opinions ?
Please don't change the ordering of the fields. It's quite deliberately
ordered for compatibility with the Apache Common Log Format. (hmm... or is it
the Combined Log Format? I forget...)
Mike
--- >8
2004 Aug 06
2
icecast2 ogg vorbis client request headers
...anyone shed some light as to what icecast2 accepts as a client
request
> > methods for ogg vorbis, apparently there is a difference bettween the
way
> > icecast2 handles mp3 and ogg vorbis.
> >
> > php example for mp3 that works
> > fwrite($fp,"GET /mymp3 HTTP/1.1\nUser-Agent:$HTTP_USER_AGENT\n\n");
> >
> > php example for ogg that doesnt work
> > fwrite($fp,"GET /mymnt.ogg HTTP/1.1\nUser-Agent:$HTTP_USER_AGENT\n\n");
> >
>
> These should both work. To be strictly correct, you must use \r\n
everywhere
> you have \n,...
2016 Nov 21
2
Exim still accepting emails to nonexistent users
...cot/auth-master
< VERSION 1 1
< SPID 16290
> VERSION 1 1
> USER 42 hs12 service=imap
< USER 1 hs12 uid=500 gid=500 home=/var/vmail/home/h/hs12
(the spaces are tabs).
But using Exim
exim -be '${readsocket{/run/dovecot/auth-userdb}{VERSION\t1\t1\nUSER\t1\hs12\tservice=imap\n}}'
does not work. Exim closes the sending side right after the final \n
with shutdown(2). Dovecot seems to see this as if the connection should
be closed now and closes the connection, w/o any response.
As it's not unusual to shutdown(2) the sender if the message i...
2010 Nov 05
4
xe cli not working on remote machine
...xffd06fb4, SEEK_CUR) = -1 ESPIPE (Illegal seek)
write(2, "Connecting via stunnel to [192.1"..., 143Connecting via stunnel to [192.168.111.17] port [443]
stunnel: stunnel has pidty: (StdFork 21996)
stunnel: stunnel start: Log from stunnel: []
) = 143
write(5, "POST /cli HTTP/1.0\r\nUser-agent: "..., 106) = 106
ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
read(5, 0xffd02fa8, 27) = -1 ECONNRESET (Connection reset by peer)
stat64("", 0xffd06fac) = -1 ENOENT (No such file or directory)
--- SIGCHLD (Chi...
2004 Aug 06
3
Ogg response headers
...icy-metadata:1)
>
> Winamp sends that to mean "I want mp3 inline metadata if you support it",
but
> this does not imply anything about the requested stream format.
>
>
> > so here is my dilema
> > example php code
> > fwrite($sp,"GET /my_mp3 HTTP/1.0\nUser-Agent:Secret stuff
> > alpha\nicy-metadata:1\n\n");//works with winamp when requested via php
> > script but
> > fwrite($sp,"GET /example.ogg HTTP/1.0\nUser-Agent:Secret stuff
alpha\n\n");
> > //will not work in winamp when requested via php script
>
> W...